mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Improved list-branches.ps1
This commit is contained in:
parent
f03aea3557
commit
d6f3df71b3
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
|
.SYNTAX ./list-branches.ps1 [<repo-dir>] [<pattern>]
|
||||||
.DESCRIPTION lists the branches of the current/given Git repository
|
.DESCRIPTION lists all branches of the current/given Git repository
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
@ -18,9 +18,13 @@ try {
|
|||||||
try {
|
try {
|
||||||
set-location $RepoDir
|
set-location $RepoDir
|
||||||
|
|
||||||
& git branch --list "$Pattern" --no-color --no-column
|
$Branches = $(git branch --list "$Pattern" --remotes --no-color --no-column)
|
||||||
if ($lastExitCode -ne "0") { throw "'git branch --list' failed" }
|
if ($lastExitCode -ne "0") { throw "'git branch --list' failed" }
|
||||||
|
|
||||||
|
foreach($Branch in $Branches) {
|
||||||
|
if ("$Branch" -match "origin/HEAD") { continue }
|
||||||
|
write-output "$($Branch.substring(9))"
|
||||||
|
}
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user