查看git上个人代码量

git log --author="wulei_wl" --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 }'

wulei@wuleide % git log --author="wulei_wl" --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 }' -
added lines: 9362, removed lines: 3846, total lines: 5516

统计每个人的增删行数

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

相关文章:

  • 2021-09-14
  • 2021-04-11
  • 2021-11-15
  • 2021-09-25
  • 2021-08-17
  • 2022-12-23
  • 2021-06-30
  • 2021-09-30
猜你喜欢
  • 2022-12-23
  • 2021-05-26
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2022-03-06
  • 2022-12-23
相关资源
相似解决方案