mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 13:40:35 +02:00
Update list-repos.ps1
This commit is contained in:
parent
8cfa16892b
commit
3f609f6134
@ -8,9 +8,9 @@
|
|||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-repos C:\MyRepos
|
PS> ./list-repos C:\MyRepos
|
||||||
|
|
||||||
Repository Latest Tag Branch Updates Status
|
Repository Latest Tag Branch Status Remote
|
||||||
---------- ---------- ------ ------- ------
|
---------- ---------- ------ ------ ------
|
||||||
📂cmake v3.23.0 main ↓0 ✔️clean
|
📂cmake v3.23.0 main ✔️clean git@github.com:Kitware/CMake ↓0
|
||||||
...
|
...
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
@ -31,11 +31,12 @@ function ListRepos {
|
|||||||
$LatestTag = ""
|
$LatestTag = ""
|
||||||
}
|
}
|
||||||
$Branch = (git -C "$Folder" branch --show-current)
|
$Branch = (git -C "$Folder" branch --show-current)
|
||||||
|
$RemoteURL = (git -C "$Folder" remote get-url origin)
|
||||||
$NumCommits = (git -C "$Folder" rev-list HEAD...origin/$Branch --count)
|
$NumCommits = (git -C "$Folder" rev-list HEAD...origin/$Branch --count)
|
||||||
$Status = (git -C "$Folder" status --short)
|
$Status = (git -C "$Folder" status --short)
|
||||||
if ("$Status" -eq "") { $Status = "✔️clean" }
|
if ("$Status" -eq "") { $Status = "✔️clean" }
|
||||||
elseif ("$Status" -like " M *") { $Status = "⚠️modified" }
|
elseif ("$Status" -like " M *") { $Status = "⚠️modified" }
|
||||||
New-Object PSObject -property @{'Repository'="📂$Repository";'Latest Tag'="$LatestTag";'Branch'="$Branch";'Updates'="↓$NumCommits";'Status'="$Status";}
|
New-Object PSObject -property @{'Repository'="📂$Repository";'Latest Tag'="$LatestTag";'Branch'="$Branch";'Status'="$Status";'Remote'="$RemoteURL ↓$NumCommits";}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,7 +46,7 @@ try {
|
|||||||
$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" }
|
||||||
|
|
||||||
ListRepos | Format-Table -property @{e='Repository';width=20},@{e='Latest Tag';width=18},@{e='Branch';width=20},@{e='Updates';width=8},Status
|
ListRepos | Format-Table -property @{e='Repository';width=20},@{e='Latest Tag';width=18},@{e='Branch';width=20},@{e='Status';width=10},Remote
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user