Update list-repos.ps1

This commit is contained in:
Markus Fleschutz 2023-07-30 20:10:30 +02:00
parent bbbd454592
commit fd667a087b

View File

@ -8,10 +8,10 @@
.EXAMPLE .EXAMPLE
PS> ./list-repos C:\MyRepos PS> ./list-repos C:\MyRepos
Repository Branch Latest Tag Updates Status Repository Latest Tag Branch Updates Status
---------- ------ ---------- ------- ------ ---------- ---------- ------ ------- ------
📂cmake 🌵main v3.23.0 0 clean 📂cmake v3.23.0 🌵main 0 clean
📂opencv 🌵main 4.5.5 0 modified 📂opencv 4.5.5 🌵main 0 modified
... ...
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
@ -25,18 +25,18 @@ function ListRepos {
$Folders = (Get-ChildItem "$ParentDir" -attributes Directory) $Folders = (Get-ChildItem "$ParentDir" -attributes Directory)
foreach($Folder in $Folders) { foreach($Folder in $Folders) {
$Repository = (Get-Item "$Folder").Name $Repository = (Get-Item "$Folder").Name
$Branch = (git -C "$Folder" branch --show-current)
$LatestTagCommitID = (git -C "$Folder" rev-list --tags --max-count=1) $LatestTagCommitID = (git -C "$Folder" rev-list --tags --max-count=1)
if ($LatestTagCommitID -ne "") { if ($LatestTagCommitID -ne "") {
$LatestTag = (git -C "$Folder" describe --tags $LatestTagCommitID) $LatestTag = (git -C "$Folder" describe --tags $LatestTagCommitID)
} else { } else {
$LatestTag = "" $LatestTag = ""
} }
$Branch = (git -C "$Folder" branch --show-current)
$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"; 'Branch'="🌵$Branch"; 'Latest Tag'="$LatestTag"; 'Updates'="$NumCommits"; 'Status'="$Status"; } New-Object PSObject -property @{'Repository'="📂$Repository";'Latest Tag'="$LatestTag";'Branch'="🌵$Branch";'Updates'="$NumCommits";'Status'="$Status";}
} }
} }
@ -46,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=22},@{e='Branch';width=20},'Latest Tag',@{e='Updates';width=10},Status ListRepos | Format-Table -property @{e='Repository';width=20},@{e='Latest Tag';width=18},@{e='Branch';width=14},@{e='Updates';width=8},Status
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"