git 统计某个人某个时间段的提交代码量

年末了,又到年度总结的时间,大家是不是又要看看自己一年写了多少代码啊;就是啦,用起来。

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

你可能感兴趣的:(git 统计某个人某个时间段的提交代码量)