1.打开需要查看的项目目录
2.复制命令右键点击Paste
- 查看某个用户提交代码次数
git log --author="用户名" --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 log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$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 }' -; done
- 查看总提交次数
git log --oneline | wc -l
- 查看某个用户提交次数
git log --author="用户名" --oneline | wc -l
- 查看每个用户提交次数
git shortlog -s -n
- 查看某个用户时间范围内提交次数
git log --author="用户名" --since="2014-07-01" --oneline | wc -l
|