Add script to log insertions and deletions by author

This commit is contained in:
Slipstream 2025-05-15 13:24:59 -06:00
parent be732995ab
commit 58bc700740
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

10
fuckass.ps1 Normal file
View File

@ -0,0 +1,10 @@
git log --author="Slipstream" --pretty=tformat: --numstat |
ForEach-Object {
$parts = $_ -split "`t"
if ($parts.Count -ge 2) {
$insertions += [int]$parts[0]
$deletions += [int]$parts[1]
}
}
"Insertions: $insertions"
"Deletions: $deletions"