Creating Contributors files from a Git log.
( echo "# Contributors" ; git log | grep "Author" | sort | uniq -i | while read r ; do printf "* %s\n" "${r/Author: /}" ; done ) > CONTRIBUTORS.md
A quick way to kind of do this. although it will miss users who have used different names or emails and it doesn't COMPLETELY spit out good stuff for markdown