统计每个人的增删代码数
代码语言:javascript复制git log --format='%aN' | sort -u | while read name; do echo -en "$namet"; 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的用户
代码语言:javascript复制git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
统计总的贡献者数量
代码语言:javascript复制git log --pretty='%aN' | sort -u | wc -l
统计代码总行数
代码语言:javascript复制git ls-files | xargs wc -l
转载请注明原文:https://longjin666.cn/?p=1425