标签:printf 查看 head pre 开发者 for sub -- +=
查看个人指定时期内代码行数,注意将 --author="user.name" 替换成自己的用户名
git log --since="2018-07-16" --before="2019-02-14" --author="user.name" --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 --pretty='%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
查看提交排名前5
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
查看开发者人数
git log --pretty='%aN' | sort -u | wc -l
查看总提交次数
git log --oneline | wc -l
标签:printf 查看 head pre 开发者 for sub -- +=
原文地址:https://www.cnblogs.com/mabaoqing/p/10375210.html