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

PR-URL: https://github.com/nodejs/node/pull/29430 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git log --use-mailmap --reverse --format='%aN <%aE>' | perl -wnE '
|
|
BEGIN {
|
|
say "# Authors sorted by whether or not they\x27re me";
|
|
}
|
|
|
|
print $seen{$_} = $_ unless $seen{$_}
|
|
' > AUTHORS
|