git统计所有人代码提交次数
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r
git统计所有人代码提交数量
git log --format='%aN' --since=2019-06-01 --until=2023-12-27 | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done