Created
June 15, 2014 12:07
-
-
Save emersion/59cb38456a054aeab0f1 to your computer and use it in GitHub Desktop.
List contributors of 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
#/bin/bash | |
git log --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment