vieyahn2017 / shellv

shell command test and study
4 stars 1 forks source link

7.26 git统计代码量 #52

Closed vieyahn2017 closed 5 years ago

vieyahn2017 commented 5 years ago

git统计代码量

vieyahn2017 commented 5 years ago
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --since=2019-6-1 --until=2019-6-30 --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
vieyahn2017 commented 5 years ago

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --since=2019-6-1 --until=2019-6-30 --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