年终终结了,代码量和提交次数,是很关键的数字,接下来就来查一下吧。
1、年度个人代码量
git log --since="2022-01-01" --before="2022-12-31" --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 }' -
2、年度代码提交量
git log --since="2022-01-01" --before="2022-12-31" --author="username" --oneline | wc -l
参考:
https://www.shuzhiduo.com/A/WpdKlK6nzV/
标签:git,--,代码,lines,01,2022,统计 From: https://www.cnblogs.com/mihoutaoguniang/p/17023180.html