J.Nemo

Stay Hungry, Stay Foolish

Git代码统计命令行

仓库提交者排名前 5

1
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5

仓库提交者(全部)

1
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r

统计个人的代码提交量

1
git log --author="$(git config --get user.name)" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }' -

贡献者统计

1
git log --pretty='%aN' | sort -u | wc -l

提交数统计

1
git log --oneline | wc -l

添加或修改的代码行数

1
git log --stat|perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/;

仓库提交者(邮箱)排名前 5

1
git log --pretty=format:%ae | gawk -- '{ ++c[$0]; } END { for(cc in c) printf "%5d %s\n",c[cc],cc; }' | sort -u -n -r | head -n 5