git代码量统计(转载)

Posted 专注于事,勿烂于情,行胜于言

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git代码量统计(转载)相关的知识,希望对你有一定的参考价值。

指定用户名版

git log --author="your_name_here" --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: 132986, removed lines: 1095369, total lines: -962383

扫描 Log 单独统计每个人的增删行数加强版

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

以上是关于git代码量统计(转载)的主要内容,如果未能解决你的问题,请参考以下文章

统计git提交代码量

(转)通过gitlab统计git提交的代码量

诸位怎么用 git 统计一天写了多少行代码

GIT命令行统计代码提交行数

Linux下安装代码统计工具git_stats

git代码统计工具gitstat安装