Created
May 13, 2015 14:18
-
-
Save rmetzger/079dda03ec310b1b20f6 to your computer and use it in GitHub Desktop.
Number of committers over time
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
| for commit in $(git rev-list master) | |
| do | |
| git checkout $commit | |
| DATE=`git log | sed '3q;d'` | |
| AUTHORS=`git log --format='%aN' | sort -u | wc -l` | |
| echo "$DATE,$AUTHORS" >> graph.csv | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment