git code line statistics command set

View the amount of personal code on git

git log --author="username" --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 }' -

注:将username更换成你git上个人的用户名

Count the number of rows added and deleted by each person

git log --format='%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

View the top 5 repository committers

git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5

Contributor Statistics:

git log --pretty='%aN' | sort -u | wc -l

Commit statistics:

git log --oneline | wc -l 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325649049&siteId=291194637