- commit
- 3a5b51e2e6228943166355ae763d0e48ca6e024f
- parent
- 0bb48d0431922db7600aa92780fb7a8b550edb1c
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2025-05-09 06:01
rm shortstat
Diffstat
| D | shortstat.sh | 6 | ------ |
1 files changed, 0 insertions, 6 deletions
diff --git a/shortstat.sh b/shortstat.sh
@@ -1,6 +0,0 @@1 -1 #!/bin/sh -e2 -13 -1 git rev-list HEAD --no-merges | while read commit; do4 -1 printf '%s,' "$(git show -s --format='%cs')"5 -1 git show --shortstat "$commit" | tail -n 1 | sed 's/ *\([0-9]\+\) files\? changed\(, \([0-9]\+\) insertions\?(+)\)\?\(, \([0-9]\+\) deletions\?(-)\)\?/\1,\3,\5/'6 -1 done