-
-
Save shreeshkatyayan/33cbefedde1e43f6ac2d3d8adde60878 to your computer and use it in GitHub Desktop.
Count number of code lines in git repository per user
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 ls-files | while read f; do git blame -w -M -C -C --line-porcelain "$f" | grep -I '^author '; done | sort -f | uniq -ic | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment