Forked from joelittlejohn/generate-contributors.sh
Last active
August 29, 2015 14:25
-
-
Save aerth/af4317b3b71c2890edf7 to your computer and use it in GitHub Desktop.
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
echo "# Contributors" > CONTRIBUTORS.md && git log --pretty=tformat:"* %an <%ae>" | tac | awk ' !x[$0]++' >> CONTRIBUTORS.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This generates a CONTRIBUTORS.md out of your Git commit log.