git-stats

a collection of scripts to analyze git repositories
git clone https://git.ce9e.org/git-stats.git

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 -e
    2    -1 
    3    -1 git rev-list HEAD --no-merges | while read commit; do
    4    -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