统计代码量,

2023-01-05  本文已影响0人  王滕辉

https://blog.csdn.net/cherish1112365/article/details/122749576

1.查看git上的个人代码量

git log --author="wangth" --pretty=tformat: --since=2022–10-01 --until=2022-12-31 --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.统计每个人的增删行数:

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

3.统计某段时间内所有人的代码量

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --since=2022–10-01 --until=2022-12-31 --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

4.查看仓库提交者排名前5:

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

5.贡献值统计:

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

6.提交数统计:

git log --oneline | wc -l
上一篇下一篇

猜你喜欢

热点阅读