当前位置:   article > 正文

Git统计代码修改行数_gitlens 查看修改代码的行数

gitlens 查看修改代码的行数

有的时候需要对 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 }'
  • 1
  • 2
  • 3

把 username 换成自己的用户名就可以了。

按照一段时间来统计

git log --since=2022-01-01 --until=2022-12-31 --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 }'
  • 1
  • 2
  • 3

把时间切换成自己想要统计的时间段就可以了。

按照用户名和时间段来统计

git log --author="username" --since=2022-01-01 --until=2022-12-31 \
--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 }'
  • 1
  • 2
  • 3
  • 4

统计每个人的增删行数

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
  • 1

贡献者统计

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

查看仓库提交者排名前 5

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

提交数统计

git log --oneline | wc -l 
  • 1

统计所有 Java 代码总行数提交修改的信息

适用其他语言

find . "(" -name "*.java" ")" -print | xargs wc -l
  • 1

参考博客

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

闽ICP备14008679号