bittorrent-tracker/bin/update-authors.sh
Feross Aboukhadijeh dd69dc6b22 Add AUTHORS.md
Give contributors credit!
2016-03-16 15:24:15 -07:00

22 lines
521 B
Bash
Executable File

#!/bin/sh
# Update AUTHORS.md based on git history.
git log --reverse --format='%aN <%aE>' | perl -we '
BEGIN {
%seen = (), @authors = ();
}
while (<>) {
next if $seen{$_};
next if /<support\@greenkeeper.io>/;
next if /<yoann\@atacma.agency>/;
next if /<yciabaud\@users.noreply.github.com>/;
$seen{$_} = push @authors, "- ", $_;
}
END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
print "#### Generated by bin/update-authors.sh.\n";
}
' > AUTHORS.md