码迷,mamicode.com
首页 > 其他好文 > 详细

git 代码量统计

时间:2017-08-16 15:27:27      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:git 代码量统计

使用 git bash , 进入项目根目录


git log --author="your_id" --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 代码量统计

标签:git 代码量统计

原文地址:http://12597095.blog.51cto.com/12587095/1956736

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!