当前位置:   article > 正文

GIT统计代码量_git统计每个人的代码量

git统计每个人的代码量

1、统计某个用户的所有提交代码行数

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

2、仓库提交者排名前 5(如果看全部,去掉 head 管道即可)

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

3、 统计某个人某个时间段内的代码行数

git log --since=2020-01-01 --until=2023-01-01 --author="authorName" --format= --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/387976
推荐阅读
相关标签
  

闽ICP备14008679号