#使用Git bash here执行:

 

#查看git每个人当日提交代码行数(修改“--after”日期为今天 )

 

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --after="2023-11-15 00:00:00" --before="2099-12-31 23:59:59" --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 }' -; done

 

执行结果:

 

 

posted on 2023-11-15 16:52  花开浪漫拾  阅读(256)  评论(0编辑  收藏  举报