Skip to content

Instantly share code, notes, and snippets.

@shui
Created January 3, 2018 01:48
Show Gist options
  • Save shui/c91d04ae5e64dd7659ab2ff747419302 to your computer and use it in GitHub Desktop.
Save shui/c91d04ae5e64dd7659ab2ff747419302 to your computer and use it in GitHub Desktop.

查看git上个人代码量

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

查看仓库提交者排名前 5

git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5

贡献者统计:

git log --pretty='%aN' | sort -u | wc -l

提交数统计:

git log --oneline | wc -l 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment