git log --pretty=tformat: --since ==2016-10-25 --until=2016-10-27 --numstat | awk ‘{ add += $1 ; subs += $2 ; loc += $1 + $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }‘
Posted zipon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git统计日期之间的代码改动行数相关的知识,希望对你有一定的参考价值。
git log --pretty=tformat: --since ==2016-10-25 --until=2016-10-27 --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统计日期之间的代码改动行数的主要内容,如果未能解决你的问题,请参考以下文章
linux wc指令(wc命令)(Word count)(统计文件的字节数单词数行数等信息)