mirror of
https://gitlab.com/pancakes1234/wdiscordbotserver.git
synced 2025-06-16 07:14:21 -06:00
10 lines
295 B
PowerShell
10 lines
295 B
PowerShell
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" |