-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update authors list, use .mailmap file
Use a git standard .mailmap file for removing duplicates and choosing which names to use for authors that used different display names on different commits. This means `git log` and `git show` naturally pick it up, as well as summary commands like `git shortlog -s` and `git shortlog -sn`, and various GUIs for Git. I've also added -f to the sort command as it appeared to (mostly) be sorted case-insensitively already. Without this option, running the script resulted in all lowercase names being moved to the end of the list (tried both macOS/BSD's default sort, and the one from gnu-coreutils). I'm guessing the previous run was done on a machine with a different implementation or override present that uses some kind of hybrid by default.
- Loading branch information
Showing
3 changed files
with
11 additions
and
4 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,4 @@ | ||
Adrian Heine <[email protected]> | ||
Alistair Braidwood <[email protected]> | ||
Forbes Lindesay <[email protected]> | ||
Rich Harris <[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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
echo "List of Acorn contributors. Updated before every release." > AUTHORS | ||
echo >> AUTHORS | ||
git log --format='%aN' | grep -v 'Adrian Heine né Lang' | grep -v abraidwood | grep -v Rich-Harris | grep -v ForbesLindesay | sort -u >> AUTHORS | ||
git log --format='%aN' | sort -uf >> AUTHORS |
2808256
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1137