aboutsummaryrefslogtreecommitdiff
path: root/.mailmap
AgeCommit message (Collapse)Author
2021-03-05Fix the .mailmap.Théo Zimmermann
2020-04-29Merge duplicates in .mailmapJason Gross
I gave preference to the email address with the larger number of commits. To find duplicates, I used the script ```bash for i in $(git shortlog -nse | sed s'/^\s*[0-9]*\s*//g' | grep -o '^[^<]*' | sed s'/\s*$//g' | sed s'/ /,/g'); do if [ $(git shortlog -nse | sed s'/ /,/g' | grep -c "$i") -gt 1 ]; then git shortlog -nse | grep "$(echo "$i" | sed s'/,/ /g')"; fi; done ```
2020-04-19Update .mailmapJason Gross
2019-05-21Fixing typos - Part 1JPR
2019-04-29Add some entries to .mailmapJason Gross
I ran `git shortlog -nse | sed s'/^[ 0-9\t]*//g' | sort | less` and manually inspected the result for duplicates. Then I used ```bash git shortlog -nse | sed s'/^[ 0-9\t]*//g' | sort | sed s'/<.*>//g' | uniq -c | grep -v '^ *1 ' ``` to check that there were no remaining duplicates.
2019-04-10[mailmap] Tweak Emilio's entries.Emilio Jesus Gallego Arias
2018-11-14[mailmap] Update "anonymous" accounts.Théo Zimmermann
Of the three "anonymous" accounts, one ("coq") was used by multiple authors (in particular Jacek Chrząszcz who developed the module system), while the other two are each the committer of a single auto-generated commit so we rename them to cvs2svn and serpyc-bot.
2018-11-14Update .mailmap.Théo Zimmermann
2018-10-05Remove duplicate committers.Guillaume Melquiond
2017-11-05Update .mailmap with a jkloos aliasJason Gross
2017-09-05.mailmap updateGaëtan Gilbert
2017-08-24Update .mailmap file.Guillaume Melquiond
2017-04-08Update the .mailmap file.Guillaume Melquiond
2016-07-06Deduplicate some names in .mailmapJason Gross
2016-07-05Add mailmap entry.Guillaume Melquiond
2015-10-05Update the .mailmap file.Guillaume Melquiond
The update process is as follows: run "git shortlog -s -e" and look for duplicate or missing contributors.
2014-08-26Add t-jagro to .mailmapJason Gross
2014-08-25"allows to", like "allowing to", is improperJason Gross
It's possible that I should have removed more "allows", as many instances of "foo allows to bar" could have been replaced by "foo bars" (e.g., "[Qed] allows to check and save a complete proof term" could be "[Qed] checks and saves a complete proof term"), but not always (e.g., "the optional argument allows to ignore universe polymorphism" should not be "the optional argument ignores universe polymorphism" but "the optional argument allows the caller to instruct Coq to ignore universe polymorphism" or something similar).
2014-08-07More .mailmap update.Arnaud Spiwack
2014-08-07Add some more entries to .mailmapArnaud Spiwack
2014-01-17Update .mailmap with recent contributors.Arnaud Spiwack
I should have updated everyone who committed since the migration to git (giving me a canonical email). I've search git shortlog -s to ensure the best I could that there are no duplicate. I discovered that email addresses from the mailmap are uncapitalised whereas the unmodified addresses are not, creating two different authors for no reason. So, I've added some record to normalise the canonical email addresses when needed.
2013-11-27Use my real email address in .mailmapEnrico Tassi
2013-11-21updated .mailmapPierre Letouzey
2013-11-19update .mailmap with my email now that I've used it in a commitPierre Letouzey
2013-11-19A .mailmap file for a nice git-shorlog displayPierre Letouzey
In particular, this file allows to merge duplicated identities of a same person. See man git shortlog for more details.