asdfq

git代码统计

查看git上个人代码量

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

查看仓库提交者排名前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

添加或修改的代码行数:

git log --stat|perl -ne \'END { print $c } $c += $1 if /(\d+) insertions/\'

参考地址:

git代码统计

分类:

技术点:

相关文章:

  • 2022-01-05
  • 2022-01-16
  • 2022-12-23
  • 2021-12-07
  • 2021-09-09
  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-04
  • 2021-12-09
  • 2021-11-18
相关资源
相似解决方案