其他分享
首页 > 其他分享> > git项目如何查看代码提交数量

git项目如何查看代码提交数量

作者:互联网

git项目如何查看代码提交数量

git log --since="2018-02-13" --before="2022-01-26" --author="$(git config --get user.name)" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }'

 

标签:loc,git,subs,查看,--,lines,add,提交
来源: https://www.cnblogs.com/shangwei/p/14465045.html