aboutsummaryrefslogblamecommitdiffstats
path: root/contrib/git-stats.sh
blob: 735817a17fe9aa697b88f6bd45b4e37a3aa55c3c (plain) (tree)






















                                                                       
#!/bin/bash

set -e
set -o pipefail

columns="Author,Commits,Changed Files,Insertions,Deletions"

git shortlog -sn "$@" |
while read -r commits author; do
	git log --author="$author" --pretty=tformat: --numstat "$@" | {
		adds=0
		subs=0
		files=0
		while read -r a s f; do
			adds=$((adds + a))
			subs=$((subs + s))
			files=$((files + 1))
		done
		printf '%s;%d;%d;%+d;%+d;\n' \
			"$author" "$commits" "$files" "$adds" "-$subs"
	}
done |
column -t -s ';' -N "$columns" -R "${columns#*,}"