Created
September 9, 2018 17:09
-
-
Save kimbo/a7aa17593e20cf2b079d4645f2e222fd to your computer and use it in GitHub Desktop.
Get number of lines committed by a given person in a repo.
This file contains 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 --author="<author_name>" --pretty=tformat: --numstat | awk '{print $1}' | grep "^[0-9]" | paste -sd+ | bc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment