2022-04-27 14:31:34 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2023-03-06 13:49:00 +01:00
|
|
|
|
Lists the Git commit statistics
|
2022-04-27 14:31:34 +02:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script lists the commit statistics of a Git repository.
|
2023-10-19 08:09:43 +02:00
|
|
|
|
.PARAMETER path
|
|
|
|
|
Specifies the path to the local Git repository (default is current working dir)
|
2022-04-27 14:31:34 +02:00
|
|
|
|
.EXAMPLE
|
2023-10-19 08:09:43 +02:00
|
|
|
|
PS> ./list-commit-stats.ps1
|
2023-03-06 13:49:00 +01:00
|
|
|
|
|
|
|
|
|
Commits Author
|
|
|
|
|
------- ------
|
2023-08-06 21:35:36 +02:00
|
|
|
|
2034 Markus Fleschutz <markus.fleschutz@gmail.com>
|
2023-03-06 13:49:00 +01:00
|
|
|
|
...
|
2022-04-27 14:31:34 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
2023-10-19 08:09:43 +02:00
|
|
|
|
param([string]$path = "$PWD")
|
2022-04-27 14:31:34 +02:00
|
|
|
|
|
|
|
|
|
try {
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "(1/4) Searching for Git executable..."
|
2022-09-19 20:33:05 +02:00
|
|
|
|
$null = (git --version)
|
2022-04-27 14:31:34 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
|
|
|
|
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "(2/4) Checking local Git repository..."
|
2023-10-19 08:09:43 +02:00
|
|
|
|
if (-not(Test-Path "$path" -pathType container)) { throw "Can't access directory: $path" }
|
2022-09-19 20:33:05 +02:00
|
|
|
|
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "(3/4) Fetching updates..."
|
2023-10-19 08:09:43 +02:00
|
|
|
|
& git -C "$path" fetch --all --quiet
|
2022-04-27 14:31:34 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
|
|
|
|
|
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "(4/4) Querying commits..."
|
2022-09-19 20:33:05 +02:00
|
|
|
|
" "
|
|
|
|
|
"Commits Author"
|
|
|
|
|
"------- ------"
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress -completed "Done."
|
2023-10-19 08:09:43 +02:00
|
|
|
|
git -C "$path" shortlog --summary --numbered --email --no-merges
|
2022-04-27 14:31:34 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git shortlog' failed with exit code $lastExitCode" }
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|