-
Notifications
You must be signed in to change notification settings - Fork 47k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a .mailmap file with all of the associations, then used git + perl to create the AUTHORS file. In theory these should all get picked up by npm. I used ABC order so it would remain unbiased and automatable. I wish we could go back and fill out the history or at least fix the commits we have from CommitSyncScript, but oh well. This also includes the script I used to automate this process in the future.
- Loading branch information
Showing
3 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Ben Newman <[email protected]> <[email protected]> | ||
Dan Schafer <[email protected]> | ||
Jeff Morrison <[email protected]> <[email protected]> | ||
Jeff Morrison <[email protected]> JeffMo <[email protected]> | ||
Jeffrey Lin <[email protected]> <[email protected]> | ||
Jordan Walke <[email protected]> | ||
Jordan Walke <[email protected]> <[email protected]> | ||
Laurence Rowe <[email protected]> <[email protected]> | ||
Nick Gavalas <[email protected]> | ||
Paul O’Shannessy <[email protected]> <[email protected]> | ||
Paul Shen <[email protected]> <[email protected]> | ||
Pete Hunt <[email protected]> | ||
Pete Hunt <[email protected]> <[email protected]> | ||
Pete Hunt <[email protected]> <[email protected]> | ||
Sebastian Markbåge <[email protected]> <[email protected]> | ||
Stoyan Stefanov <[email protected]> | ||
Timothy Yung <[email protected]> <[email protected]> | ||
Vjeux <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Andrew Zich <[email protected]> | ||
Andrey Popp <[email protected]> | ||
Ben Alpert <[email protected]> | ||
Ben Newman <[email protected]> | ||
Brian Rue <[email protected]> | ||
Cam Spiers <[email protected]> | ||
Cheng Lou <[email protected]> | ||
Christian Roman <[email protected]> | ||
Clay Allsopp <[email protected]> | ||
Dan Schafer <[email protected]> | ||
Daniel Gasienica <[email protected]> | ||
Danny Ben-David <[email protected]> | ||
David Hu <[email protected]> | ||
Eric Clemmons <[email protected]> | ||
Greg Roodt <[email protected]> | ||
Hugo Jobling <[email protected]> | ||
Isaac Salier-Hellendag <[email protected]> | ||
Jakub Malinowski <[email protected]> | ||
James Ide <[email protected]> | ||
Jamie Wong <[email protected]> | ||
Jan Kassens <[email protected]> | ||
Jeff Morrison <[email protected]> | ||
Jeffrey Lin <[email protected]> | ||
Jordan Walke <[email protected]> | ||
Kunal Mehta <[email protected]> | ||
Laurence Rowe <[email protected]> | ||
Mathieu M-Gosselin <[email protected]> | ||
Nick Gavalas <[email protected]> | ||
Paul O’Shannessy <[email protected]> | ||
Paul Seiffert <[email protected]> | ||
Paul Shen <[email protected]> | ||
Pete Hunt <[email protected]> | ||
Peter Cottle <[email protected]> | ||
Sebastian Markbåge <[email protected]> | ||
Stoyan Stefanov <[email protected]> | ||
Timothy Yung <[email protected]> | ||
Vjeux <[email protected]> | ||
Zach Bruggeman <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |