mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c1afa53648
PR-URL: https://github.com/iojs/io.js/pull/1829 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git log --reverse --format='%aN <%aE>' | perl -wnE '
|
|
BEGIN {
|
|
say "# Authors sorted by whether or not they\x27re me";
|
|
}
|
|
|
|
print $seen{$_} = $_ unless $seen{$_}
|
|
' > AUTHORS
|