diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000000000..5dbb4c6b8d295 --- /dev/null +++ b/.mailmap @@ -0,0 +1,18 @@ +Ben Newman +Dan Schafer +Jeff Morrison +Jeff Morrison JeffMo +Jeffrey Lin +Jordan Walke +Jordan Walke +Laurence Rowe +Nick Gavalas +Paul O’Shannessy +Paul Shen +Pete Hunt +Pete Hunt +Pete Hunt +Sebastian Markbåge +Stoyan Stefanov +Timothy Yung +Vjeux diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000000000..3b8082a3ceb2f --- /dev/null +++ b/AUTHORS @@ -0,0 +1,38 @@ +Andrew Zich +Andrey Popp <8mayday@gmail.com> +Ben Alpert +Ben Newman +Brian Rue +Cam Spiers +Cheng Lou +Christian Roman +Clay Allsopp +Dan Schafer +Daniel Gasienica +Danny Ben-David +David Hu +Eric Clemmons +Greg Roodt +Hugo Jobling +Isaac Salier-Hellendag +Jakub Malinowski +James Ide +Jamie Wong +Jan Kassens +Jeff Morrison +Jeffrey Lin +Jordan Walke +Kunal Mehta +Laurence Rowe +Mathieu M-Gosselin +Nick Gavalas +Paul O’Shannessy +Paul Seiffert +Paul Shen +Pete Hunt +Peter Cottle +Sebastian Markbåge +Stoyan Stefanov +Timothy Yung +Vjeux +Zach Bruggeman diff --git a/scripts/authors b/scripts/authors new file mode 100755 index 0000000000000..bbf52740a8170 --- /dev/null +++ b/scripts/authors @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# Generate an AUTHORS file based on the output of git shortlog. It uses ABC +# order, strips out leading spaces and numbers, then filters out specific +# authors. + +git shortlog -se \ + | perl -spe 's/^\s+\d+\s+//' \ + | sed -e '/^CommitSyncScript.*$/d' \ + > AUTHORS