2014-07-24 22:49:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")/.."
|
|
|
|
|
|
|
|
# see also ".mailmap" for how email addresses and names are deduplicated
|
|
|
|
|
|
|
|
{
|
|
|
|
cat <<-'EOH'
|
|
|
|
# This file lists all individuals having contributed content to the repository.
|
2015-03-13 02:16:56 +00:00
|
|
|
# For how it is generated, see `hack/generate-authors.sh`.
|
2014-07-24 22:49:39 +00:00
|
|
|
EOH
|
|
|
|
echo
|
2015-01-15 08:38:24 +00:00
|
|
|
git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf
|
2014-07-24 22:49:39 +00:00
|
|
|
} > AUTHORS
|