Re: [PATCH 0/6] Corrections to the mailmap file

2013-07-11 Thread Junio C Hamano
Stefan Beller writes: > On 07/11/2013 07:33 PM, Junio C Hamano wrote: >> Stefan Beller writes: >>> ... >>> I intend to contact each of the persons individually and ask whether >>> just their mail address changed, or if they are indeed different persons. >> >> Has anything happen to this topic

Re: [PATCH 0/6] Corrections to the mailmap file

2013-07-11 Thread Stefan Beller
On 07/11/2013 07:33 PM, Junio C Hamano wrote: > Stefan Beller writes: >> >> 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 o

Re: [PATCH 0/6] Corrections to the mailmap file

2013-07-11 Thread Junio C Hamano
Stefan Beller writes: > > 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 w

Re: [PATCH 0/6] Corrections to the mailmap file

2013-07-04 Thread Stefan Beller
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 sh

[PATCH 0/6] Corrections to the mailmap file

2013-07-04 Thread Stefan Beller
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 m