/2011/02/21/generating-an-authors-file-in-git/

Generating an AUTHORS file in git

Looking for an automated way of generating an AUTHORS file for your Open Source project? git makes this very simple:

git shortlog -se | cut -c8- > AUTHORS

I prefer this because of the .mailmap support.

February 21, 2011