git查看某个人的提交记录以及统计信息

1、需求:查看某个人的所有提交,用于总结报告

方法:

git log --author="author"

2、需求:查看某个人的所有提交,逆序

方法:

git log --reverse

3、需求:查看某个人的提交统计信息

方法:

git log --author="zhangphil" --oneline | wc -l
git log --author="_your_name_" --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 }'

参考

git如何查看某个人提交的日志

git统计某一个开发者提交代码的次数

git查看commit提交次数和代码量

如何以相反的顺序git log

git log 的提交历史排序选项

git log

 

你可能感兴趣的:(git,git)