mailmap: Restore dictionary sorting
authorKees Cook <keescook@chromium.org>
Wed, 29 Jul 2020 21:36:42 +0000 (14:36 -0700)
committerKees Cook <keescook@chromium.org>
Mon, 17 Aug 2020 21:32:44 +0000 (14:32 -0700)
commitd6bd5201f7eaa9c15ea9b0f8ff17dd7bc3b9d78f
treedfde54d2bb3981efff09b7b73b1bf3c23daabb0f
parent9123e3a74ec7b934a4a099e98af6a61c2f80bbf5
mailmap: Restore dictionary sorting

Several names had been recently appended (instead of inserted). While
git-shortlog doesn't need this file to be sorted, it helps humans to
keep it organized this way. Sort the entire file (which includes some
minor shuffling for dictionary order).

Done with the following commands:

grep -E '^(#|$)' .mailmap > .mailmap.head
grep -Ev '^(#|$)' .mailmap > .mailmap.body
  sort -f .mailmap.body > .mailmap.body.sort
cat .mailmap.head .mailmap.body.sort > .mailmap
rm .mailmap.head .mailmap.body.sort

Signed-off-by: Kees Cook <keescook@chromium.org>
.mailmap