Searched hist:d6bd5201 (Results 1 - 1 of 1) sorted by relevance

/linux-master/
H A D.mailmapdiff d6bd5201 Wed Jul 29 15:36:42 MDT 2020 Kees Cook <keescook@chromium.org> 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>

Completed in 178 milliseconds