赞
踩
我统计的是2020/11/02 - 2020/11/09 这段时间的代码量,最后生成的文件名叫123,你可以任意起名字。
git log --since='2020-11-02' --until='2020-11-09' --format='%aN' | sort -u | while read name; do echo -en "$name,"; git log --since='2020-11-02' --until='2020-11-09' --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 >> 123.csv;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。