Skip to content

Commit

Permalink
Update AUTHORS, automate process
Browse files Browse the repository at this point in the history
Extract pre-git authors to AUTHORS.old and generate the final AUTHORS
file by running generate_authors.sh, which merges AUTHORS.old with
information from the git history.
  • Loading branch information
dominikh committed Jan 27, 2016
1 parent d6aa01a commit e4cd631
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dominik Honnef <[email protected]> <[email protected]>
5 changes: 4 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Austin Clements <[email protected]>
Ben Fried <[email protected]>
Bobby Powers <[email protected]>
Charles Lee <[email protected]>
Dominik Honnef <[email protected]>
Dominik Honnef <[email protected]>
Eric Eisner <[email protected]>
Erin Keenan <[email protected]>
Evan Martin <[email protected]>
Felix Lange <[email protected]>
Florian Weimer <[email protected]>
Expand All @@ -16,6 +17,8 @@ Jan Newmarch <[email protected]>
Jean-Marc Eurin <[email protected]>
Juergen Hoetzel <[email protected]>
Kevin Ballard <[email protected]>
Lowe Thiderman <[email protected]>
Mark Petrovic <[email protected]>
Mats Lidell <[email protected]>
Peter Kleiweg <[email protected]>
Quan Yong Zhai <[email protected]>
Expand Down
31 changes: 31 additions & 0 deletions AUTHORS.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This file contains all the authors that contributed to go-mode while
# it was still part of the Go distribution. Most of these authors are
# not tracked in this repository's history. For a complete list of
# authors, see the AUTHORS file instead.

Aaron France <[email protected]>
Alan Donovan <[email protected]>
Austin Clements <[email protected]>
Ben Fried <[email protected]>
Bobby Powers <[email protected]>
Charles Lee <[email protected]>
Dominik Honnef <[email protected]>
Eric Eisner <[email protected]>
Evan Martin <[email protected]>
Florian Weimer <[email protected]>
Istvan Marko <[email protected]>
James Aguilar <[email protected]>
Jan Newmarch <[email protected]>
Jean-Marc Eurin <[email protected]>
Kevin Ballard <[email protected]>
Mats Lidell <[email protected]>
Peter Kleiweg <[email protected]>
Quan Yong Zhai <[email protected]>
Robert Zaremba <[email protected]>
Rui Ueyama <[email protected]>
Russ Cox <[email protected]>
Ryan Barrett <[email protected]>
Sameer Ajmani <[email protected]>
Scott Lawrence <[email protected]>
Steven Elliot Harris <[email protected]>
Yasuyuki Oka <[email protected]>
6 changes: 6 additions & 0 deletions generate_authors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
export LC_ALL=C
(
grep -v "^#" AUTHORS.old | grep -v '^$'
git log --format='%aN <%aE>'
) | sort -u

0 comments on commit e4cd631

Please sign in to comment.