统计Git项目各成员贡献量(代码行数、提交次数)

使用方法

在项目的文件夹中,右键,选择Git Bash Here
统计Git项目各成员贡献量(代码行数、提交次数)_第1张图片
会弹出命令行框

统计Git项目各成员贡献量(代码行数、提交次数)_第2张图片
使用下面的代码去统计

统计指定用户的提交代码行数

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

统计所有贡献者提交代码行数

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 --pretty='%aN' | sort | uniq -c | sort -k1 -n -r

你可能感兴趣的:(git)