统计代码量
Posted matengfei123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计代码量相关的知识,希望对你有一定的参考价值。
git log --since="2017-03-01" --before="2019-12-10" --author="$(git config --get matengfei)" --pretty=tformat: --numstat | gawk ‘{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s
",add,subs,loc }‘
以上是关于统计代码量的主要内容,如果未能解决你的问题,请参考以下文章