公司的平台统计只有java的代码,python项目的像是没有统计进去。目前先手动统计,看看怎么可一起统计进去。
git log --since="2020-07-01" --before="2020-07-30" --author="zhangpw" --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 }'
网友评论