update-authors.sh 197 B

123456789
  1. #!/bin/sh
  2. git log --use-mailmap --reverse --format='%aN <%aE>' | perl -wnE '
  3. BEGIN {
  4. say "# Authors sorted by whether or not they\x27re me";
  5. }
  6. print $seen{$_} = $_ unless $seen{$_}
  7. ' > AUTHORS