From: Stefan Beller <hidden> Date: 2016-06-15 22:58:00
Hello,
I noticed many duplicates in email addresses but having the same name by
running:
# Finding out duplicates by comparing names:
git shortlog -sne |awk '{ NF--; $1=""; print }' |sort |uniq -d
Most of these entries are most probably the same person, but we cannot be
sure, as there might be different persons having the same name, then they
are only distinguished by the mail address.
However I suspect most of these to be the same person, having changed
mail addresses.
Here comes an initial batch of corrections to the mailmap file, which
maps people with email addresses of different capitalization onto
the same entity.
(Example Name@MIT.EDU is the same as Name@mit.edu)
I intend to contact each of the persons individually and ask whether
just their mail address changed, or if they are indeed different persons.
Stefan Beller
Stefan Beller (6):
.mailmap: Multiple email addresses of Alejandro R. Sedeño
.mailmap: Multiple mail addresses of Alex Riesen
.mailmap: Multiple mail addresses of Paul Mackerras
.mailmap: Multiple mail addresses of Keith Cascio
.mailmap: Multiple mail addresses of Johannes Schindelin
.mailmap: Multiple mail addresses of Toby Allsopp
.mailmap | 9 +++++++++
1 file changed, 9 insertions(+)
--
1.8.3.2.636.g7943f03
From: Stefan Beller <hidden> Date: 2016-06-15 22:58:00
This is obvious as its only difference is capital letters in one of the
mail addresses.
Signed-off-by: Stefan Beller <redacted>
---
.mailmap | 1 +
1 file changed, 1 insertion(+)
@@ -5,6 +5,7 @@ # same person appearing not to be so. #+Alejandro R. Sedeño <asedeno@MIT.EDU> <asedeno@mit.edu> Alex Bennée <kernel-hacker@bennee.com> Alexander Gavrilov <angavrilov@gmail.com> Aneesh Kumar K.V <aneesh.kumar@gmail.com>
From: Stefan Beller <hidden> Date: 2016-06-15 22:58:00
This is an obvious one, as the .(none) addresses are not valid mail
addresses.
Signed-off-by: Stefan Beller <redacted>
---
.mailmap | 2 ++
1 file changed, 2 insertions(+)
@@ -52,6 +52,7 @@ Junio C Hamano <gitster@pobox.com> <junio@hera.kernel.org> Junio C Hamano <gitster@pobox.com> <junio@kernel.org> Junio C Hamano <gitster@pobox.com> <junkio@cox.net> Karl Hasselström <kha@treskal.com>+Keith Cascio <keith@CS.UCLA.EDU> <keith@cs.ucla.edu> Kevin Leung <kevinlsk@gmail.com> Kent Engstrom <kent@lysator.liu.se> Lars Doelle <lars.doelle@on-line ! de>
@@ -38,6 +38,7 @@ Jakub Narębski <jnareb@gmail.com> Jay Soffian <jaysoffian+git@gmail.com> Jeff King <peff@peff.net> <peff@github.com> Joachim Berdal Haga <cjhaga@fys.uio.no>+Johannes Schindelin <Johannes.Schindelin@gmx.de> <johannes.schindelin@gmx.de> Johannes Sixt <j6t@kdbg.org> <johannes.sixt@telecom.at> Johannes Sixt <j6t@kdbg.org> <j.sixt@viscovery.net> Johannes Sixt <j6t@kdbg.org> <J.Sixt@eudaptics.com>
From: Stefan Beller <hidden> Date: 2016-06-15 22:58:00
Here is a script to display the entries I was referring to:
---
#!/bin/bash
git shortlog -sne |awk '{ NF--; $1=""; print }' |sort |uniq -d > mailmapdoubles
while read line ; do
# remove leading whitespace
trimmed=$(echo $line | sed -e 's/^ *//g' -e 's/ *$//g')
echo "git shortlog -sne | grep \""$trimmed"\""
done < mailmapdoubles > mailmapdoubles2
sh mailmapdoubles2
rm mailmapdoubles
rm mailmapdoubles2
On 07/04/2013 04:04 PM, Stefan Beller wrote:
Hello,
I noticed many duplicates in email addresses but having the same name by
running:
# Finding out duplicates by comparing names:
git shortlog -sne |awk '{ NF--; $1=""; print }' |sort |uniq -d
Most of these entries are most probably the same person, but we cannot be
sure, as there might be different persons having the same name, then they
are only distinguished by the mail address.
However I suspect most of these to be the same person, having changed
mail addresses.
Here comes an initial batch of corrections to the mailmap file, which
maps people with email addresses of different capitalization onto
the same entity.
(Example Name@MIT.EDU is the same as Name@mit.edu)
I intend to contact each of the persons individually and ask whether
just their mail address changed, or if they are indeed different persons.
Stefan Beller
Stefan Beller (6):
.mailmap: Multiple email addresses of Alejandro R. Sedeño
.mailmap: Multiple mail addresses of Alex Riesen
.mailmap: Multiple mail addresses of Paul Mackerras
.mailmap: Multiple mail addresses of Keith Cascio
.mailmap: Multiple mail addresses of Johannes Schindelin
.mailmap: Multiple mail addresses of Toby Allsopp
.mailmap | 9 +++++++++
1 file changed, 9 insertions(+)