Commit Graph

3 Commits

Author SHA1 Message Date
Daniel Marjamäki 5641833cdb Revert "Revert "Add a .mailmap file.""
This reverts commit 4968330c2c.
2013-10-04 18:03:18 +02:00
Daniel Marjamäki 4968330c2c Revert "Add a .mailmap file."
This reverts commit 002ec80181.

There was authors who don't want to get their email address published.
2013-10-04 17:49:50 +02:00
Stefan Beller 002ec80181 Add a .mailmap file.
The .mailmap feature is used to coalesce together commits
by the same person in the shortlog, where their name and/or
email address was spelled differently.
  -- "man git shortlog"

As this corrects the author information at the root (this repository),
all services parsing these information will improve by this contribution.
As discussed on IRC, this also removes the need for different aliases
on ohloh.net (currently https://www.ohloh.net/p/cppcheck/aliases)

        # Finding out duplicates by comparing email addresses:
        git shortlog -sne |awk '{ print $NF }' |sort |uniq -d

        # Finding out duplicates by comparing names:
        git shortlog -sne |awk '{ NF--; $1=""; print }' |sort |uniq -d

Signed-off-by: Stefan Beller <stefanbeller@googlemail.com>
2013-10-02 20:21:14 +02:00