-
-
Notifications
You must be signed in to change notification settings - Fork 814
/
Copy pathGitUtils.ps1
583 lines (498 loc) · 25.3 KB
/
GitUtils.ps1
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# Inspired by Mark Embling
# http://www.markembling.info/view/my-ideal-powershell-prompt-with-git-integration
<#
.SYNOPSIS
Gets the path to the current repository's .git dir.
.DESCRIPTION
Gets the path to the current repository's .git dir. Or if the repository
is a bare repository, the root directory of the bare repository.
.EXAMPLE
PS C:\GitHub\posh-git\tests> Get-GitDirectory
Returns C:\GitHub\posh-git\.git
.INPUTS
None.
.OUTPUTS
System.String
#>
function Get-GitDirectory {
$pathInfo = Microsoft.PowerShell.Management\Get-Location
if (!$pathInfo -or ($pathInfo.Provider.Name -ne 'FileSystem')) {
$null
}
elseif ($Env:GIT_DIR) {
$Env:GIT_DIR -replace '\\|/', [System.IO.Path]::DirectorySeparatorChar
}
else {
$currentDir = Get-Item -LiteralPath $pathInfo -Force
while ($currentDir) {
$gitDirPath = Join-Path $currentDir.FullName .git
if (Test-Path -LiteralPath $gitDirPath -PathType Container) {
return $gitDirPath
}
# Handle the worktree case where .git is a file
if (Test-Path -LiteralPath $gitDirPath -PathType Leaf) {
$gitDirPath = Invoke-Utf8ConsoleCommand { git rev-parse --git-dir 2>$null }
if ($gitDirPath) {
return $gitDirPath
}
}
$headPath = Join-Path $currentDir.FullName HEAD
if (Test-Path -LiteralPath $headPath -PathType Leaf) {
$refsPath = Join-Path $currentDir.FullName refs
$objsPath = Join-Path $currentDir.FullName objects
if ((Test-Path -LiteralPath $refsPath -PathType Container) -and
(Test-Path -LiteralPath $objsPath -PathType Container)) {
$bareDir = Invoke-Utf8ConsoleCommand { git rev-parse --git-dir 2>$null }
if ($bareDir -and (Test-Path -LiteralPath $bareDir -PathType Container)) {
$resolvedBareDir = (Resolve-Path $bareDir).Path
return $resolvedBareDir
}
}
}
$currentDir = $currentDir.Parent
}
}
}
function Get-GitBranch($gitDir = $(Get-GitDirectory), [Diagnostics.Stopwatch]$sw) {
if (!$gitDir) { return }
Invoke-Utf8ConsoleCommand {
dbg 'Finding branch' $sw
$r = ''; $b = ''; $c = ''
$step = ''; $total = ''
if (Test-Path $gitDir/rebase-merge) {
dbg 'Found rebase-merge' $sw
if (Test-Path $gitDir/rebase-merge/interactive) {
dbg 'Found rebase-merge/interactive' $sw
$r = '|REBASE-i'
}
else {
$r = '|REBASE-m'
}
$b = "$(Get-Content $gitDir/rebase-merge/head-name)"
$step = "$(Get-Content $gitDir/rebase-merge/msgnum)"
$total = "$(Get-Content $gitDir/rebase-merge/end)"
}
else {
if (Test-Path $gitDir/rebase-apply) {
dbg 'Found rebase-apply' $sw
$step = "$(Get-Content $gitDir/rebase-apply/next)"
$total = "$(Get-Content $gitDir/rebase-apply/last)"
if (Test-Path $gitDir/rebase-apply/rebasing) {
dbg 'Found rebase-apply/rebasing' $sw
$r = '|REBASE'
}
elseif (Test-Path $gitDir/rebase-apply/applying) {
dbg 'Found rebase-apply/applying' $sw
$r = '|AM'
}
else {
$r = '|AM/REBASE'
}
}
elseif (Test-Path $gitDir/MERGE_HEAD) {
dbg 'Found MERGE_HEAD' $sw
$r = '|MERGING'
}
elseif (Test-Path $gitDir/CHERRY_PICK_HEAD) {
dbg 'Found CHERRY_PICK_HEAD' $sw
$r = '|CHERRY-PICKING'
}
elseif (Test-Path $gitDir/REVERT_HEAD) {
dbg 'Found REVERT_HEAD' $sw
$r = '|REVERTING'
}
elseif (Test-Path $gitDir/BISECT_LOG) {
dbg 'Found BISECT_LOG' $sw
$r = '|BISECTING'
}
$b = Invoke-NullCoalescing `
{ dbg 'Trying symbolic-ref' $sw; git symbolic-ref HEAD -q 2>$null } `
{ '({0})' -f (Invoke-NullCoalescing `
{
dbg 'Trying describe' $sw
switch ($Global:GitPromptSettings.DescribeStyle) {
'contains' { git describe --contains HEAD 2>$null }
'branch' { git describe --contains --all HEAD 2>$null }
'describe' { git describe HEAD 2>$null }
default { git tag --points-at HEAD 2>$null }
}
} `
{
dbg 'Falling back on parsing HEAD' $sw
$ref = $null
if (Test-Path $gitDir/HEAD) {
dbg 'Reading from .git/HEAD' $sw
$ref = Get-Content $gitDir/HEAD 2>$null
}
else {
dbg 'Trying rev-parse' $sw
$ref = git rev-parse HEAD 2>$null
}
if ($ref -match 'ref: (?<ref>.+)') {
return $Matches['ref']
}
elseif ($ref -and $ref.Length -ge 7) {
return $ref.Substring(0,7)+'...'
}
else {
return 'unknown'
}
}
) }
}
dbg 'Inside git directory?' $sw
if ('true' -eq $(git rev-parse --is-inside-git-dir 2>$null)) {
dbg 'Inside git directory' $sw
if ('true' -eq $(git rev-parse --is-bare-repository 2>$null)) {
$c = 'BARE:'
}
else {
$b = 'GIT_DIR!'
}
}
if ($step -and $total) {
$r += " $step/$total"
}
"$c$($b -replace 'refs/heads/','')$r"
}
}
function GetUniquePaths($pathCollections) {
$hash = New-Object System.Collections.Specialized.OrderedDictionary
foreach ($pathCollection in $pathCollections) {
foreach ($path in $pathCollection) {
$hash[$path] = 1
}
}
$hash.Keys
}
$castStringSeq = [Linq.Enumerable].GetMethod("Cast").MakeGenericMethod([string])
<#
.SYNOPSIS
Gets a Git status object that is used by Write-GitStatus.
.DESCRIPTION
Gets a Git status object that is used by Write-GitStatus.
The status object provides the information to be displayed in the various
sections of the posh-git prompt.
.EXAMPLE
PS C:\> $s = Get-GitStatus; Write-GitStatus $s
Gets a Git status object. Then passes the object to Write-GitStatus which
writes out a posh-git prompt (or returns a string in ANSI mode) with the
information contained in the status object.
.INPUTS
None
.OUTPUTS
System.Management.Automation.PSObject
.LINK
Write-GitStatus
#>
function Get-GitStatus {
param(
# The path of a directory within a Git repository that you want to get
# the Git status.
[Parameter(Position=0)]
$GitDir = (Get-GitDirectory),
# If specified, overrides $GitPromptSettings.EnableFileStatus and
# $GitPromptSettings.EnablePromptStatus when they are set to $false.
[Parameter()]
[switch]
$Force
)
$settings = if ($global:GitPromptSettings) { $global:GitPromptSettings } else { [PoshGitPromptSettings]::new() }
$promptStatusEnabled = $Force -or $settings.EnablePromptStatus
if ($promptStatusEnabled -and $GitDir) {
if ($settings.Debug) {
$sw = [Diagnostics.Stopwatch]::StartNew(); Write-Host ''
}
else {
$sw = $null
}
$branch = $null
$aheadBy = 0
$behindBy = 0
$gone = $false
$indexAdded = New-Object System.Collections.Generic.List[string]
$indexModified = New-Object System.Collections.Generic.List[string]
$indexDeleted = New-Object System.Collections.Generic.List[string]
$indexUnmerged = New-Object System.Collections.Generic.List[string]
$filesAdded = New-Object System.Collections.Generic.List[string]
$filesModified = New-Object System.Collections.Generic.List[string]
$filesDeleted = New-Object System.Collections.Generic.List[string]
$filesUnmerged = New-Object System.Collections.Generic.List[string]
$stashCount = 0
$fileStatusEnabled = $Force -or $settings.EnableFileStatus
if ($fileStatusEnabled -and !$(InDotGitOrBareRepoDir $GitDir) -and !$(InDisabledRepository)) {
if ($null -eq $settings.EnableFileStatusFromCache) {
$settings.EnableFileStatusFromCache = $null -ne (Get-Module GitStatusCachePoshClient)
}
if ($settings.EnableFileStatusFromCache) {
dbg 'Getting status from cache' $sw
$cacheResponse = Get-GitStatusFromCache
dbg 'Parsing status' $sw
$indexAdded.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.IndexAdded))))
$indexModified.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.IndexModified))))
foreach ($indexRenamed in $cacheResponse.IndexRenamed) {
$indexModified.Add($indexRenamed.Old)
}
$indexDeleted.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.IndexDeleted))))
$indexUnmerged.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.Conflicted))))
$filesAdded.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.WorkingAdded))))
$filesModified.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.WorkingModified))))
foreach ($workingRenamed in $cacheResponse.WorkingRenamed) {
$filesModified.Add($workingRenamed.Old)
}
$filesDeleted.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.WorkingDeleted))))
$filesUnmerged.AddRange($castStringSeq.Invoke($null, (,@($cacheResponse.Conflicted))))
$branch = $cacheResponse.Branch
$upstream = $cacheResponse.Upstream
$gone = $cacheResponse.UpstreamGone
$aheadBy = $cacheResponse.AheadBy
$behindBy = $cacheResponse.BehindBy
if ($cacheResponse.Stashes) { $stashCount = $cacheResponse.Stashes.Length }
if ($cacheResponse.State) { $branch += "|" + $cacheResponse.State }
}
else {
dbg 'Getting status' $sw
switch ($settings.UntrackedFilesMode) {
"No" { $untrackedFilesOption = "-uno" }
"All" { $untrackedFilesOption = "-uall" }
"Normal" { $untrackedFilesOption = "-unormal" }
}
$status = Invoke-Utf8ConsoleCommand { git -c core.quotepath=false -c color.status=false status $untrackedFilesOption --short --branch 2>$null }
if ($settings.EnableStashStatus) {
dbg 'Getting stash count' $sw
$stashCount = $null | git stash list 2>$null | measure-object | Select-Object -expand Count
}
dbg 'Parsing status' $sw
switch -regex ($status) {
'^(?<index>[^#])(?<working>.) (?<path1>.*?)(?: -> (?<path2>.*))?$' {
if ($sw) { dbg "Status: $_" $sw }
switch ($matches['index']) {
'A' { $null = $indexAdded.Add($matches['path1']); break }
'M' { $null = $indexModified.Add($matches['path1']); break }
'R' { $null = $indexModified.Add($matches['path1']); break }
'C' { $null = $indexModified.Add($matches['path1']); break }
'D' { $null = $indexDeleted.Add($matches['path1']); break }
'U' { $null = $indexUnmerged.Add($matches['path1']); break }
}
switch ($matches['working']) {
'?' { $null = $filesAdded.Add($matches['path1']); break }
'A' { $null = $filesAdded.Add($matches['path1']); break }
'M' { $null = $filesModified.Add($matches['path1']); break }
'D' { $null = $filesDeleted.Add($matches['path1']); break }
'U' { $null = $filesUnmerged.Add($matches['path1']); break }
}
continue
}
'^## (?<branch>\S+?)(?:\.\.\.(?<upstream>\S+))?(?: \[(?:ahead (?<ahead>\d+))?(?:, )?(?:behind (?<behind>\d+))?(?<gone>gone)?\])?$' {
if ($sw) { dbg "Status: $_" $sw }
$branch = $matches['branch']
$upstream = $matches['upstream']
$aheadBy = [int]$matches['ahead']
$behindBy = [int]$matches['behind']
$gone = [string]$matches['gone'] -eq 'gone'
continue
}
'^## Initial commit on (?<branch>\S+)$' {
if ($sw) { dbg "Status: $_" $sw }
$branch = $matches['branch']
continue
}
default { if ($sw) { dbg "Status: $_" $sw } }
}
}
}
if (!$branch) { $branch = Get-GitBranch $GitDir $sw }
dbg 'Building status object' $sw
# This collection is used twice, so create the array just once
$filesAdded = $filesAdded.ToArray()
$indexPaths = @(GetUniquePaths $indexAdded,$indexModified,$indexDeleted,$indexUnmerged)
$workingPaths = @(GetUniquePaths $filesAdded,$filesModified,$filesDeleted,$filesUnmerged)
$index = (,$indexPaths) |
Add-Member -Force -PassThru NoteProperty Added $indexAdded.ToArray() |
Add-Member -Force -PassThru NoteProperty Modified $indexModified.ToArray() |
Add-Member -Force -PassThru NoteProperty Deleted $indexDeleted.ToArray() |
Add-Member -Force -PassThru NoteProperty Unmerged $indexUnmerged.ToArray()
$working = (,$workingPaths) |
Add-Member -Force -PassThru NoteProperty Added $filesAdded |
Add-Member -Force -PassThru NoteProperty Modified $filesModified.ToArray() |
Add-Member -Force -PassThru NoteProperty Deleted $filesDeleted.ToArray() |
Add-Member -Force -PassThru NoteProperty Unmerged $filesUnmerged.ToArray()
$result = New-Object PSObject -Property @{
GitDir = $GitDir
RepoName = Split-Path (Split-Path $GitDir -Parent) -Leaf
Branch = $branch
AheadBy = $aheadBy
BehindBy = $behindBy
UpstreamGone = $gone
Upstream = $upstream
HasIndex = [bool]$index
Index = $index
HasWorking = [bool]$working
Working = $working
HasUntracked = [bool]$filesAdded
StashCount = $stashCount
}
dbg 'Finished' $sw
if ($sw) { $sw.Stop() }
return $result
}
}
function InDisabledRepository {
$currentLocation = Get-Location
foreach ($repo in $Global:GitPromptSettings.RepositoriesInWhichToDisableFileStatus) {
if ($currentLocation -like "$repo*") {
return $true
}
}
return $false
}
function InDotGitOrBareRepoDir([string][ValidateNotNullOrEmpty()]$GitDir) {
# A UNC path has no drive so it's better to use the ProviderPath e.g. "\\server\share".
# However for any path with a drive defined, it's better to use the Path property.
# In this case, ProviderPath is "\LocalMachine\My"" whereas Path is "Cert:\LocalMachine\My".
# The latter is more desirable.
$pathInfo = Microsoft.PowerShell.Management\Get-Location
$currentPath = if ($pathInfo.Drive) { $pathInfo.Path } else { $pathInfo.ProviderPath }
$res = $currentPath.StartsWith($GitDir, (Get-PathStringComparison))
$res
}
function Get-AliasPattern($cmd) {
$aliases = @($cmd) + @(Get-Alias | Where-Object { $_.Definition -eq $cmd } | Select-Object -Exp Name)
"($($aliases -join '|'))"
}
<#
.SYNOPSIS
Deletes the specified Git branches.
.DESCRIPTION
Deletes the specified Git branches that have been merged into the commit specified by the Commit parameter (HEAD by default). You must either specify a branch name via the Name parameter, which accepts wildard characters, or via the Pattern parameter, which accepts a regular expression.
The following branches are always excluded from deletion:
* The current branch
* develop
* master
The default set of excluded branches can be overridden with the ExcludePattern parameter.
Consider always running this command FIRST with the WhatIf parameter. This will show you which branches will be deleted. This gives you a chance to adjust your branch name wildcard pattern or regular expression if you are using the Pattern parameter.
IMPORTANT: Be careful using this command. Even though by default this command deletes only merged branches, most, if not all, of your historical branches have been merged. But that doesn't mean you want to delete them. That is why this command excludes `develop` and `master` by default. But you may use different names e.g. `development` or have other historical branches you don't want to delete. In these cases, you can either:
* Specify a narrower branch name wildcard such as "user/$env:USERNAME/*".
* Specify an updated ExcludeParameter e.g. '(^\*)|(^. (develop|master|v\d+)$)' which adds any branch matching the pattern 'v\d+' to the exclusion list.
If necessary, you can delete the specified branches REGARDLESS of their merge status by using the IncludeUnmerged parameter. BE VERY CAREFUL using the IncludeUnmerged parameter together with the Force parameter, since you will not be given the opportunity to confirm each branch deletion.
The following Git commands are executed by this command:
git branch --merged $Commit |
Where-Object { $_ -notmatch $ExcludePattern } |
Where-Object { $_.Trim() -like $Name } |
Foreach-Object { git branch --delete $_.Trim() }
If the IncludeUnmerged parameter is specified, execution changes to:
git branch |
Where-Object { $_ -notmatch $ExcludePattern } |
Where-Object { $_.Trim() -like $Name } |
Foreach-Object { git branch --delete $_.Trim() }
If the DeleteForce parameter is specified, the Foreach-Object changes to:
Foreach-Object { git branch --delete --force $_.Trim() }
If the Pattern parameter is used instead of the Name parameter, the second Where-Object changes to:
Where-Object { $_ -match $Pattern }
Recovering Deleted Branches
If you wind up deleting a branch you didn't intend to, you can easily recover it with the info provided by Git during the delete. For instance, let's say you realized you didn't want to delete the branch 'feature/exp1'. In the output of this command, you should see a deletion entry for this branch that looks like:
Deleted branch feature/exp1 (was 08f9000).
To recover this branch, execute the following Git command:
# git branch <branch-name> <sha1>
git branch feature/exp1 08f9000
.EXAMPLE
PS> Remove-GitBranch -Name "user/${env:USERNAME}/*" -WhatIf
Shows the merged branches that would be deleted by the specified branch name without actually deleting. Remove the WhatIf parameter when you are happy with the list of branches that will be deleted.
.EXAMPLE
PS> Remove-GitBranch "feature/*" -Force
Deletes the merged branches that match the specified wildcard. Using the Force parameter skips all confirmation prompts. Name is a positional parameter. The first argument is assumed to be the value of the Name parameter.
.EXAMPLE
PS> Remove-GitBranch "bugfix/*" -Force -DeleteForce
Deletes the merged branches that match the specified wildcard. Using the Force parameter skips all confirmation prompts while the DeleteForce parameter uses the --force option in the underlying Git command.
.EXAMPLE
PS> Remove-GitBranch -Pattern 'user/(dahlbyk|hillr)/.*'
Deletes the merged branches that match the specified regular expression.
.EXAMPLE
PS> Remove-GitBranch -Name * -ExcludePattern '(^\*)|(^. (develop|master|v\d+)$)'
Deletes merged branches except the current branch, develop, master and branches that also match the pattern 'v\d+' e.g. v1, v1.0, v1.x. BE VERY CAREFUL SPECIYING SUCH A BROAD BRANCH NAME WILDCARD!
.EXAMPLE
PS> Remove-GitBranch "feature/*" -IncludeUnmerged -WhatIf
Shows the branches, both merged and unmerged, that match the specified wildcard that would be deleted without actually deleting them. Once you've verified the list of branches looks correct, remove the WhatIf parameter to actually delete the branches.
#>
function Remove-GitBranch {
[CmdletBinding(DefaultParameterSetName="Wildcard", SupportsShouldProcess, ConfirmImpact="Medium")]
param(
# Specifies a regular expression pattern for the branches that will be deleted. Certain branches are always excluded from deletion e.g. the current branch as well as the develop and master branches. See the ExcludePattern parameter to modify that pattern.
[Parameter(Position=0, Mandatory, ParameterSetName="Wildcard")]
[ValidateNotNullOrEmpty()]
[string]
$Name,
# Specifies a regular expression for the branches that will be deleted. Certain branches are always excluded from deletion e.g. the current branch as well as the develop and master branches. See the ExcludePattern parameter to modify that pattern.
[Parameter(Position=0, Mandatory, ParameterSetName="Pattern")]
[ValidateNotNull()]
[string]
$Pattern,
# Specifies a regular expression used to exclude merged branches from being deleted. The default pattern excludes the current branch, develop and master branches.
[Parameter()]
[ValidateNotNull()]
[string]
$ExcludePattern = '(^\*)|(^. (develop|master)$)',
# Branches whose tips are reachable from the specified commit will be deleted. The default commit is HEAD. This parameter is ignored if the IncludeUnmerged parameter is specified.
[Parameter()]
[string]
$Commit = "HEAD",
# Specifies that unmerged branches are also eligible to be deleted.
[Parameter()]
[switch]
$IncludeUnmerged,
# Deletes the specified branches without prompting for confirmation. By default, Remove-GitBranch prompts for confirmation before deleting branches.
[Parameter()]
[switch]
$Force,
# Deletes the specified branches by adding the --force parameter to the git branch --delete command e.g. git branch --delete --force <branch-name>. This is also the equivalent of using the -D parameter on the git branch command.
[Parameter()]
[switch]
$DeleteForce
)
if ($IncludeUnmerged) {
$branches = git branch
}
else {
$branches = git branch --merged $Commit
}
$filteredBranches = $branches | Where-Object {$_ -notmatch $ExcludePattern }
if ($PSCmdlet.ParameterSetName -eq "Wildcard") {
$branchesToDelete = $filteredBranches | Where-Object { $_.Trim() -like $Name }
}
else {
$branchesToDelete = $filteredBranches | Where-Object { $_ -match $Pattern }
}
$action = if ($DeleteForce) { "delete with force"} else { "delete" }
$yesToAll = $noToAll = $false
foreach ($branch in $branchesToDelete) {
$targetBranch = $branch.Trim()
if ($PSCmdlet.ShouldProcess($targetBranch, $action)) {
if ($Force -or $yesToAll -or
$PSCmdlet.ShouldContinue("Are you REALLY sure you want to $action `"$targetBranch`"?",
"Confirm branch deletion", [ref]$yesToAll, [ref]$noToAll)) {
if ($noToAll) { return }
if ($DeleteForce) {
Invoke-Utf8ConsoleCommand { git branch --delete --force $targetBranch }
}
else {
Invoke-Utf8ConsoleCommand { git branch --delete $targetBranch }
}
}
}
}
}
function Update-AllBranches($Upstream = 'master', [switch]$Quiet) {
$head = git rev-parse --abbrev-ref HEAD
git checkout -q $Upstream
$branches = Invoke-Utf8ConsoleCommand { (git branch --no-color --no-merged) } | Where-Object { $_ -notmatch '^\* ' }
foreach ($line in $branches) {
$branch = $line.SubString(2)
if (!$Quiet) { Write-Host "Rebasing $branch onto $Upstream..." }
git rebase -q $Upstream $branch > $null 2> $null
if ($LASTEXITCODE) {
git rebase --abort
Write-Warning "Rebase failed for $branch"
}
}
git checkout -q $head
}