标签:for sp 代码 log c line ad r bs
统计项目中所有人的代码提交次数并排序: git shortlog -s -n
统计某人的代码量 git log --author="_Your_Name_Here_" --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 }‘ -
标签:for sp 代码 log c line ad r bs
原文地址:http://www.cnblogs.com/deansong/p/3976902.html