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 }' 

 

上一篇:关于FFT/NTT与字符串匹配


下一篇:Pandas中[],loc,iloc,at,iat,ix的用法区别和规律总结