bug-gettext
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gettext] [PATCH] Add the .mailmap file


From: Stefan Beller
Subject: [bug-gettext] [PATCH] Add the .mailmap file
Date: Mon, 22 Apr 2013 21:04:05 +0200

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.

For further reference see the man page of git shortlog

# 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
---
 .mailmap | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 .mailmap

diff --git a/.mailmap b/.mailmap
new file mode 100644
index 0000000..8cd56bf
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1,4 @@
+Miguel Ángel Arruga Vivas <address@hidden> Miguel Angel Arruga Vivas 
<address@hidden>
+Daiki Ueno <address@hidden> Daiki Ueno <address@hidden>
+Guido Flohr <address@hidden> Guido Flohr <address@hidden>
+
-- 
1.8.2.1.538.gad77690




reply via email to

[Prev in Thread] Current Thread [Next in Thread]