0


git统计代码量

在日常工作中,有时候需要统计一下最近提交的代码量,看看有哪些人在摸鱼,方便咱pua
以下是查询命令!

首先要在电脑选中你的项目目录,右键 点击 Git Bash Here,弹出命令框后,输入指令

按人按时间查询代码量

git log --since=2024-07-01--until=2024-07-30--author=huangli --pretty=tformat:--numstat | gawk '{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"; git log --author="$name"--pretty=tformat:--numstat --since=2024-01-01--until=2024-07-01| awk '{add += $1; subs += $2; loc += $1-$2}END{ printf "added lines: %s removed lines: %s total lines: %s\n",add,subs,loc}'  -; done

统计整个项目代码总量

find .-print | xargs grep -v "^$"| wc -l

注释:

--since 表示查询起始时间
--until 表示查询结束时间
--author 表示需要查询的用户id
add 表示新增多少行
subs 表示减少多少行
loc 表示总增加行数,可以自行修改计算公式
标签: git

本文转载自: https://blog.csdn.net/m0_51041242/article/details/140353832
版权归原作者 codingPower 所有, 如有侵权,请联系我们删除。

“git统计代码量”的评论:

还没有评论