git如何统计代码行数
git log --author="username" --since=2018-01-01 --until=2019-12-31 --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 }' - 2.查看提交者排名前N位 git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5 3.提交数统计 git log --oneline | wc -l 4.根据用户名统计 git log --author="username" --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 }' - git log --since=2018-01-01 --until=2018-12-31