Skip to content

Commit

Permalink
AUTHORS
Browse files Browse the repository at this point in the history
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
zpao committed Sep 10, 2013
1 parent 5388d70 commit 63b58cf
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .mailmap
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]>
38 changes: 38 additions & 0 deletions AUTHORS
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]>
10 changes: 10 additions & 0 deletions scripts/authors
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

0 comments on commit 63b58cf

Please sign in to comment.