05月24, 2019

git统计代码量

https://www.cnblogs.com/0616--ataozhijia/p/8081329.html

统计每个人增删行数

git log --format='%aN' | 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

本文链接:https://blog.hijs.cc/post/git-count.html

-- EOF --

Comments