美文网首页
git统计行数

git统计行数

作者: gleeeli | 来源:发表于2019-02-19 15:33 被阅读3次

    cd 到项目路径

    git log --since='2019-01-01' --until='2019-02-04' --format='%aN' | sort -u | while read name; do echo -en "name,"; git log --since='2019-01-01' --until='2019-12-31' --author="name" --numstat --pretty=tformat: --no-merges | awk '{ add += 1; subs +=2; loc += 1 -2 } END { printf "added lines, %s, removed lines, %s, total lines, %s\n", add, subs, loc }' -; done >> 2019_02_19_code.csv;

    相关文章

      网友评论

          本文标题:git统计行数

          本文链接:https://www.haomeiwen.com/subject/gehfyqtx.html