-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGitHelpers.ps1
More file actions
215 lines (193 loc) · 5.41 KB
/
GitHelpers.ps1
File metadata and controls
215 lines (193 loc) · 5.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#!/usr/bin/env pwsh
# Helper utilities for dealing with reopsitories
# https://github.com/ajgorhoe/IGLib.modules.IGLibScriptsPS.git
# Execute definitions from other files:
. $(Join-Path "$PSScriptRoot" "File.ps1")
# Check whether the current script has already been executed before:
CheckScriptExecuted $ExecutedScriptPath_GitHelpers $MyInvocation.MyCommand.Path;
# Store scritp path in a variable in order to enable later verifications:
$ExecutedScriptPath_GitHelpers = $MyInvocation.MyCommand.Path
Set-Alias GitRoot GetGitRoot
Set-Alias GitBranch GetGitBranch
Set-Alias GitCommit GetGitCommit
Set-Alias ShortGitCommit GetShortGitCommit
Set-Alias GitShortCommit GetShortGitCommit
Set-Alias SetBranch SetGitBranch
function IsGitRoot($DirectoryPath = ".")
{
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
$GitRefDirectoryName = ".git/refs"
$GitRefDirectoryPath = $(Join-Path "$DirectoryPath" `
"$GitRefDirectoryName")
return Test-Path "$GitRefDirectoryPath" -PathType Container
}
function IsGitWorkingDirectory($DirectoryPath = ".")
{
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
if (IsGitRoot($DirectoryPath)) { return $true; }
$ParentDir = ParentDir "$DirectoryPath"
if ("$ParentDir" -eq "") { return $false }
return IsGitWorkingDirectory "$ParentDir"
}
function GetGitRoot($DirectoryPath = ".")
{
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
if (IsGitRoot($DirectoryPath)) {
return (Resolve-Path $DirectoryPath).Path; }
$ParentDir = ParentDir "$DirectoryPath"
if ("$ParentDir" -eq "")
{
Write-Host "`GetGitRoot(): not a Git working directory.`n"
return $null
}
return GetGitRoot "$ParentDir"
}
function GetGitBranch($DirectoryPath = ".")
{
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
if (-not (IsGitWorkingDirectory "$DirectoryPath"))
{
Write-Host "`nGetGitBranch(): not a Git working directory.`n"
return $null
}
$InitialDir = $(Get-Location).Path
$ret = $null
try {
if ("$DirectoryPath" -ne "") { Set-Location "$DirectoryPath" } # { cd ... }
$ret = $(git rev-parse --abbrev-ref HEAD)
}
catch {
Write-Host "ERROR in GetGitBranch(): $($_.Exception.Message)`n"
}
finally {
Set-Location "$InitialDir" # cd ...
}
return $ret
}
function GetGitCommit($DirectoryPath = ".", $ShortLength)
{
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
if (-not (IsGitWorkingDirectory "$DirectoryPath"))
{
Write-Host "`nGetGitCommit(): not a Git working directory.`n"
return $null
}
$InitialDir = $(Get-Location).Path
$ret = $null
try {
if ("$DirectoryPath" -ne "") { cd "$DirectoryPath" }
$ret = $(git rev-parse HEAD)
if ("$ShortLength" -ne "")
{
$ret = $ret[0..$ShortLength] -join''
}
}
catch {
Write-Host "`nERROR in GetGitCommit(): $($_.Exception.Message)`n"
}
finally {
Set-Location "$InitialDir" # cd ...
}
return $ret
}
function GetShortGitCommit($DirectoryPath = ".")
{
return GetGitCommit $DirectoryPath 4;
}
function SetGitBranch($BranchCommitOrTag, $DirectoryPath = ".")
{
if ("$BranchCommitOrTag" -eq "") {
Write-Host "`nSetGitBranch(): Branch, commit or tag not specified.`n"
return
}
if ("$DirectoryPath" -eq "") { $DirectoryPath = "." }
if (-not (IsGitWorkingDirectory "$DirectoryPath"))
{
Write-Host "`nGetGitBranch(): not a Git working directory.`n"
return $null
}
$InitialDir = $(Get-Location).Path
$ret = $null
try {
if ("$DirectoryPath" -ne "") { Set-Location "$DirectoryPath" } # { cd ... }
# $(git rev-parse --abbrev-ref HEAD)
$(git checkout "$BranchCommitOrTag")
}
catch {
Write-Host "ERROR in GetGitBranch(): $($_.Exception.Message)`n"
}
finally {
Set-Location "$InitialDir" # cd ...
}
return $ret
}
function GitClone ($RepositoryAddress = $null,
$CloneDirectory = $null, $BranchCommitOrTag = $null )
{
if ("$RepositoryAddress" -eq "")
{
Write-Host "Error: GitClone(): RepositoryAddress not specified"
return;
}
if ("$CloneDirectory" -ne "")
{
if (IsGitWorkingDirectory "$CloneDirectory")
{
Write-Host "`nGitClone(): Directory already contains a Git repository: $CloneDirectory`n"
return null;
}
}
if ("$BranchCommitOrTag" -ne "")
{
. git clone "$RepositoryAddress" "$CloneDirectory" --branch "$BranchCommitOrTag"
} else {
. git clone "$RepositoryAddress" "$CloneDirectory"
}
}
function GitUpdate ($CloneDirectory = ".", $BranchCommitOrTag = $null )
{
$InitialDir = $(Get-Location).Path # (pwd).Path
# $ret = $null
if ("$CloneDirectory" -eq "") { $CloneDirectory = "." }
if (-not (IsGitWorkingDirectory "$CloneDirectory"))
{
Write-Host "`nError: GitUpdate(): Not a Git working directory: $CloneDirectory`n"
return
}
try
{
Set-Location "$CloneDirectory" # cd ...
if ("$BranchCommitOrTag" -eq "")
{
# branch not specified
. git pull
return
}
try
{
. git fetch --all --tags
. git checkout "$BranchCommitOrTag"
. git pull
}
catch { }
return
}
finally { Set-Location "$InitialDir" } # cd ...
}
function GitCloneOrUpdate($RepositoryAddress = $null,
$CloneDirectory = $null, $BranchCommitOrTag = $null )
{
if ("$CloneDirectory" -eq "") { $CloneDirectory = "." }
if ("$RepositoryAddres" -ne "")
{
GitClone "$RepositoryAddres" "$CloneDirectory" "$BranchCommitOrTag"
}
}
function GitCloneOrUpdate($RepositoryAddress = $null,
$BranchTagOrCommit=$null)
# Returns a set of parts of the string version of form "1.2.3.4"
{
if ($null -eq $versionString -or $versionString -eq "")
{ $versionString = "1.0.0.0" }
return $versionString.Replace(".",",").Split(",")
}