Created
March 20, 2010 22:19
-
-
Save arthurk/338948 to your computer and use it in GitHub Desktop.
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
# sort committers by how many lines they have committed to a git repo | |
find . -name '*.py' -exec git blame -p {} \; | awk '/committer / { print $2 | "sort | uniq -c"}' | sort -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment