mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 05:00:15 +00:00

PR-URL: https://github.com/iojs/io.js/pull/1219 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
19 lines
274 B
Bash
Executable File
19 lines
274 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git log --reverse --format='%aN <%aE>' | perl -we '
|
|
|
|
BEGIN {
|
|
%seen = (), @authors = ();
|
|
}
|
|
|
|
while (<>) {
|
|
next if $seen{$_};
|
|
$seen{$_} = push @authors, $_;
|
|
}
|
|
|
|
END {
|
|
print "# Authors sorted by whether or not they'\''re me\n";
|
|
print @authors;
|
|
}
|
|
' > AUTHORS
|