added AUTHORS file

This commit is contained in:
Juan Batiz-Benet 2015-02-11 07:18:16 -08:00
parent 8be756313a
commit 6f166529dd
2 changed files with 38 additions and 0 deletions

26
docs/AUTHORS Normal file
View File

@ -0,0 +1,26 @@
# This file lists all individuals having contributed content to the repository.
# For how it is generated, see `docs/generate-authors.sh`.
Aaron Hill <aa1ronham@gmail.com>
Brendan Mc <Bren2010@users.noreply.github.com>
Brian Tiger Chow <brian.holderchow@gmail.com>
Carlos Cobo <toqueteos@gmail.com>
Chas Leichner <chas@chas.io>
Christian Couder <chriscool@tuxfamily.org>
Emery Hemingway <emery@vfemail.net>
epitron <chris@ill-logic.com>
Ethan Buchman <ethan@coinculture.info>
Henry <cryptix@riseup.net>
Jeromy Johnson <jeromyj@gmail.com>
Juan Batiz-Benet <juan@benet.ai>
llSourcell <sirajravel@gmail.com>
Markus Amalthea Magnuson <markus.magnuson@gmail.com>
Matt Bell <mappum@gmail.com>
Mildred Ki'Lya <mildred-pub.git@mildred.fr>
Patrick Connolly <patrick.c.connolly@gmail.com>
Peter Borzov <tihoutrom@gmail.com>
Quinn Slack <sqs@sourcegraph.com>
Shanti Bouchez-Mongardé <shanti-pub.git@mildred.fr>
Simon Kirkby <tigger@interthingy.com>
Siraj Ravel <llSourcell@gmail.com>
verokarhu <andreas.metsala@gmail.com>

12
docs/generate-authors.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
# see also ".mailmap" for how email addresses and names are deduplicated
cat >AUTHORS <<-'EOF'
# This file lists all individuals having contributed content to the repository.
# For how it is generated, see `docs/generate-authors.sh`.
EOF
git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf >>AUTHORS