mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Improve list-branches.ps1
This commit is contained in:
parent
38a2093731
commit
c68563600a
@ -9,27 +9,26 @@ param($RepoDir = "$PWD", $Pattern = "*")
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
set-location "$RepoDir"
|
|
||||||
|
|
||||||
$Null = (git --version)
|
$Null = (git --version)
|
||||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||||
|
|
||||||
& "$PSScriptRoot/fetch-repo.ps1"
|
& git -C "$RepoDir" fetch
|
||||||
if ($lastExitCode -ne "0") { throw "Script 'fetch-repo.ps1' failed" }
|
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
|
||||||
|
|
||||||
write-output ""
|
$Branches = $(git -C "$RepoDir" branch --list --remotes --no-color --no-column)
|
||||||
write-output "List of Git Branches"
|
|
||||||
write-output "--------------------"
|
|
||||||
$Branches = $(git branch --list --remotes --no-color --no-column)
|
|
||||||
if ($lastExitCode -ne "0") { throw "'git branch --list' failed" }
|
if ($lastExitCode -ne "0") { throw "'git branch --list' failed" }
|
||||||
|
|
||||||
|
""
|
||||||
|
"List of Git Branches"
|
||||||
|
"--------------------"
|
||||||
foreach($Branch in $Branches) {
|
foreach($Branch in $Branches) {
|
||||||
if ("$Branch" -match "origin/HEAD") { continue }
|
if ("$Branch" -match "origin/HEAD") { continue }
|
||||||
$BranchName = $Branch.substring(9)
|
$BranchName = $Branch.substring(9)
|
||||||
if ("$BranchName" -notlike "$Pattern") { continue }
|
if ("$BranchName" -notlike "$Pattern") { continue }
|
||||||
write-output "$BranchName"
|
"$BranchName"
|
||||||
}
|
}
|
||||||
write-output ""
|
""
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user