Searched hist:d6bd5201f7eaa9c15ea9b0f8ff17dd7bc3b9d78f (Results 1 – 1 of 1) sorted by relevance
/linux/ |
H A D | .mailmap | diff d6bd5201f7eaa9c15ea9b0f8ff17dd7bc3b9d78f Wed Jul 29 23:36:42 CEST 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>
|