mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-15 11:10:54 +01:00
Update list-repos.ps1
This commit is contained in:
parent
aa3031af19
commit
3c74ae4704
@ -1,17 +1,17 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists Git repositories
|
Lists Git repos
|
||||||
.DESCRIPTION
|
.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
|
.PARAMETER ParentDir
|
||||||
Specifies the path to the parent directory.
|
Specifies the path to the parent directory.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-repos C:\MyRepos
|
PS> ./list-repos C:\MyRepos
|
||||||
|
|
||||||
No Repository Branch LatestTag Status
|
Repository Branch LatestTag Status
|
||||||
-- ---------- ------ --------- ------
|
---------- ------ --------- ------
|
||||||
1 cmake main v3.23.0 clean
|
cmake main v3.23.0 clean
|
||||||
2 opencv main 4.5.5 modified
|
opencv main 4.5.5 modified
|
||||||
...
|
...
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
@ -22,19 +22,17 @@
|
|||||||
param([string]$ParentDir = "$PWD")
|
param([string]$ParentDir = "$PWD")
|
||||||
|
|
||||||
function ListRepos {
|
function ListRepos {
|
||||||
[int]$No = 1
|
|
||||||
$Folders = (Get-ChildItem "$ParentDir" -attributes Directory)
|
$Folders = (Get-ChildItem "$ParentDir" -attributes Directory)
|
||||||
foreach($Folder in $Folders) {
|
foreach($Folder in $Folders) {
|
||||||
$FolderName = (Get-Item "$Folder").Name
|
$Repository = (Get-Item "$Folder").Name
|
||||||
$Branch = (git -C "$Folder" branch --show-current)
|
$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)
|
$LatestTag = (git -C "$Folder" describe --tags $LatestTagCommitID)
|
||||||
|
$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" }
|
||||||
$NumCommits = (git -C "$Folder" rev-list HEAD...origin/$Branch --count)
|
New-Object PSObject -property @{ 'Repository'="📂$Repository"; 'Branch'="$Branch"; 'Latest Tag'="$LatestTag"; 'Updates'="↓$NumCommits"; 'Status'="$Status"; }
|
||||||
New-Object PSObject -property @{ 'No'="$No"; 'Repository'="$FolderName"; 'Branch'="$Branch"; 'Latest_Tag'="$LatestTag"; 'Status'="$Status ↓$NumCommits"; }
|
|
||||||
$No++
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,9 +42,9 @@ 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='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
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user