Created
April 8, 2012 19:20
-
-
Save ZweiSteinSoft/2339420 to your computer and use it in GitHub Desktop.
List all contributors of a #Git repo, most actives first
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
#!/bin/sh | |
git log --pretty=format:%aN | sort | uniq -c | sort -rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment