Skip to content

Instantly share code, notes, and snippets.

View PVince81's full-sized avatar

Vincent Petry PVince81

  • Stuttgart, Germany
View GitHub Profile
@joelittlejohn
joelittlejohn / generate-contributors.sh
Created May 22, 2013 22:08
Instant CONTRIBUTORS.md from your git log
echo "# Contributors" > CONTRIBUTORS.md && git log --pretty=tformat:"* %an <%ae>" | tac | awk ' !x[$0]++' >> CONTRIBUTORS.md