generate-authors.sh 382 B

123456789101112131415
  1. #!/bin/bash
  2. set -e
  3. cd "$(dirname "$(readlink -f "$BASH_SOURCE")")/.."
  4. # see also ".mailmap" for how email addresses and names are deduplicated
  5. {
  6. cat <<-'EOH'
  7. # This file lists all individuals having contributed content to the repository.
  8. # For how it is generated, see `hack/generate-authors.sh`.
  9. EOH
  10. echo
  11. git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf
  12. } > AUTHORS