How to count the number of lines of code git

1. In accordance with username period statistics 

git log --author="username" --since=2018-01-01 --until=2019-12-31 --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 }' -

2. Check the submitter of the top N bits

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

3. Submit statistics

git log --oneline | wc -l

The username statistics

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 }' -

The statistical time period 

git log --since=2018-01-01 --until=2018-12-31 --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 }'

6. statistics additions and deletions of rows per 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 ", add, subs, loc }' -; done

7. contributors statistics

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

Guess you like

Origin www.cnblogs.com/chenzhenfj/p/11249164.html