From 3c74ae4704dee2d14db906b168f10c85634bae6f Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 30 Jul 2023 11:00:07 +0200 Subject: [PATCH] Update list-repos.ps1 --- Scripts/list-repos.ps1 | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/Scripts/list-repos.ps1 b/Scripts/list-repos.ps1 index 5d076125..f34a0f83 100755 --- a/Scripts/list-repos.ps1 +++ b/Scripts/list-repos.ps1 @@ -1,17 +1,17 @@ <# .SYNOPSIS - Lists Git repositories + Lists Git repos .DESCRIPTION - This PowerShell script lists the details of all Git repositories in a folder. + This PowerShell script lists details of all Git repositories in a folder. .PARAMETER ParentDir Specifies the path to the parent directory. .EXAMPLE PS> ./list-repos C:\MyRepos - No Repository Branch LatestTag Status - -- ---------- ------ --------- ------ - 1 cmake main v3.23.0 clean - 2 opencv main 4.5.5 modified + Repository Branch LatestTag Status + ---------- ------ --------- ------ + cmake main v3.23.0 clean + opencv main 4.5.5 modified ... .LINK https://github.com/fleschutz/PowerShell @@ -22,19 +22,17 @@ param([string]$ParentDir = "$PWD") function ListRepos { - [int]$No = 1 $Folders = (Get-ChildItem "$ParentDir" -attributes Directory) foreach($Folder in $Folders) { - $FolderName = (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) | out-null $LatestTag = (git -C "$Folder" describe --tags $LatestTagCommitID) + $NumCommits = (git -C "$Folder" rev-list HEAD...origin/$Branch --count) $Status = (git -C "$Folder" status --short) if ("$Status" -eq "") { $Status = "clean" } elseif ("$Status" -like " M *") { $Status = "MODIFIED" } - $NumCommits = (git -C "$Folder" rev-list HEAD...origin/$Branch --count) - New-Object PSObject -property @{ 'No'="$No"; 'Repository'="$FolderName"; 'Branch'="$Branch"; 'Latest_Tag'="$LatestTag"; 'Status'="$Status ↓$NumCommits"; } - $No++ + New-Object PSObject -property @{ 'Repository'="📂$Repository"; 'Branch'="$Branch"; 'Latest Tag'="$LatestTag"; 'Updates'="↓$NumCommits"; 'Status'="$Status"; } } } @@ -44,9 +42,9 @@ try { $Null = (git --version) if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } - ListRepos | Format-Table -property @{e='No';width=3},@{e='Repository';width=22},@{e='Branch';width=20},Latest_Tag,Status + ListRepos | Format-Table -property @{e='Repository';width=22},@{e='Branch';width=20},'Latest Tag',@{e='Updates';width=10},Status exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 -} \ No newline at end of file +}