2023-07-29 10:04:38 +02:00
|
|
|
PS> *list-commit-statistics.ps1*
|
|
|
|
====================
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
This PowerShell script lists the commit statistics of a Git repository.
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2022-11-17 19:46:02 +01:00
|
|
|
```powershell
|
2023-07-29 10:11:05 +02:00
|
|
|
PS> list-commit-statistics.ps1 [[-RepoDir] <String>] [<CommonParameters>]
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
-RepoDir <String>
|
|
|
|
Specifies the path to the Git repository.
|
|
|
|
|
|
|
|
Required? false
|
|
|
|
Position? 1
|
|
|
|
Default value "$PWD"
|
|
|
|
Accept pipeline input? false
|
|
|
|
Accept wildcard characters? false
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Example
|
|
|
|
-------
|
2022-11-17 19:46:02 +01:00
|
|
|
```powershell
|
|
|
|
PS> ./list-commit-statistics
|
2023-05-26 12:20:18 +02:00
|
|
|
|
|
|
|
Commits Author
|
|
|
|
------- ------
|
|
|
|
2034 Markus Fleschutz <markus@fleschutz.de>
|
|
|
|
...
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Notes
|
|
|
|
-----
|
2022-11-17 19:46:02 +01:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Related Links
|
|
|
|
-------------
|
2022-11-17 19:46:02 +01:00
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2023-05-26 12:20:18 +02:00
|
|
|
Lists the Git commit statistics
|
2022-11-17 20:02:26 +01:00
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script lists the commit statistics of a Git repository.
|
|
|
|
.PARAMETER RepoDir
|
|
|
|
Specifies the path to the Git repository.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./list-commit-statistics
|
2023-05-26 12:20:18 +02:00
|
|
|
|
|
|
|
Commits Author
|
|
|
|
------- ------
|
|
|
|
2034 Markus Fleschutz <markus@fleschutz.de>
|
|
|
|
...
|
2022-11-17 20:02:26 +01:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
param([string]$RepoDir = "$PWD")
|
|
|
|
|
|
|
|
try {
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress "⏳ (1/4) Searching for Git executable..."
|
2022-11-17 20:02:26 +01:00
|
|
|
$null = (git --version)
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
|
|
|
|
|
|
|
$RepoDirName = (Get-Item "$RepoDir").Name
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress "⏳ (2/4) Checking folder 📂$RepoDirName..."
|
|
|
|
if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress "⏳ (3/4) Fetching updates..."
|
2022-11-17 20:02:26 +01:00
|
|
|
& git -C "$RepoDir" fetch --all --quiet
|
|
|
|
if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" }
|
|
|
|
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress "⏳ (4/4) Querying commits..."
|
2022-11-17 20:02:26 +01:00
|
|
|
" "
|
|
|
|
"Commits Author"
|
|
|
|
"------- ------"
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress -completed " "
|
2022-11-17 20:02:26 +01:00
|
|
|
git -C "$RepoDir" shortlog --summary --numbered --email --no-merges
|
|
|
|
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
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-07-29 10:11:05 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of list-commit-statistics.ps1 as of 07/29/2023 10:10:45)*
|