git5~git统计代码修改

2018.04.13

  • 统计代码修改量
git log --pretty=tformat: --since ==2018-04-01 --no-merges   --numstat | awk '{ add += $1 ; subs += $2 ; loc += $1 + $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }'

你可能感兴趣的:(git5~git统计代码修改)