Created
June 11, 2020 16:22
-
-
Save Elfsong/a9808db43a6bd09508c02642f0cdbabf to your computer and use it in GitHub Desktop.
Git info statistic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --since ==2020–05-02 --until=2018-06-11 --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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment