mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 16:33:20 +01:00
Improve list-tags.ps1
This commit is contained in:
parent
fb94c247d9
commit
6c0116adb7
@ -19,16 +19,14 @@ try {
|
||||
$Null = (git --version)
|
||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||
|
||||
"🢃 Fetching updates..."
|
||||
& git -C "$RepoDir" fetch --all --quiet
|
||||
if ($lastExitCode -ne "0") { throw "'git fetch --all' failed" }
|
||||
"🢃 Fetching latest tags..."
|
||||
& git -C "$RepoDir" fetch --all --tags --quiet
|
||||
if ($lastExitCode -ne "0") { throw "'git fetch --all --tags' failed" }
|
||||
|
||||
$RepoDirName = (get-item "$RepoDir").Name
|
||||
[system.threading.thread]::currentthread.currentculture=[system.globalization.cultureinfo]"en-US"
|
||||
""
|
||||
"🔖 Tags in Git repository 📂$RepoDirName as of $((Get-Date).ToShortDateString()):"
|
||||
|
||||
& git -C "$RepoDir" tag --list "$Pattern" --column
|
||||
"Tag Description"
|
||||
"--- -----------"
|
||||
& git -C "$RepoDir" tag --list "$Pattern" -n
|
||||
if ($lastExitCode -ne "0") { throw "'git tag --list' failed" }
|
||||
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user