其他分享
首页 > 其他分享> > git之常用命令记录

git之常用命令记录

作者:互联网

1、统计单个提交者的代码量 将下面的  --author="username" 中的username换成具体提交者,然后执行即可

git log --author="username" --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 }' 

 

标签:username,loc,git,subs,记录,--,lines,常用命令,提交者
来源: https://www.cnblogs.com/emilyzz/p/14324075.html