* [ptxdist] [PATCH] mailmap: Add a few entries for improved commit statistics
@ 2023-06-07 13:51 Uwe Kleine-König
2023-06-07 14:24 ` Alexander Dahl
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2023-06-07 13:51 UTC (permalink / raw)
To: ptxdist
When a single person uses different variants of their real name and
different email addresses, they appear as different persons in the
hall of fame in the category "Commits".
With this .mailmap the number of individual committers is reduced from
148 to 141 (as of ptxdist-2023.05.0) as produced by
git shortlog -sn
.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
.mailmap | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 .mailmap
diff --git a/.mailmap b/.mailmap
new file mode 100644
index 000000000000..c1c31f0237a0
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1,7 @@
+Christian Gieseler <cg@eks-engel.de>
+Denis Osterland-Heim <denis.osterland@diehl.com>
+Florian Bäuerle <florian.baeuerle@allegion.com>
+Ladislav Michl <Ladislav.Michl@seznam.cz>
+Ladislav Michl <ladis@linux-mips.org>
+Michael Olbrich <mol@freebie.lab.pengutronix.de>
+Thorsten Liepert <thorsten.liepert@diehl.com>
base-commit: 5015bfbd0347abfc20bcf0bfedf5b02670353924
--
2.39.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCH] mailmap: Add a few entries for improved commit statistics
2023-06-07 13:51 [ptxdist] [PATCH] mailmap: Add a few entries for improved commit statistics Uwe Kleine-König
@ 2023-06-07 14:24 ` Alexander Dahl
2023-06-08 12:56 ` Michael Olbrich
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Dahl @ 2023-06-07 14:24 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: ptxdist
Hello Uwe,
Am Wed, Jun 07, 2023 at 03:51:29PM +0200 schrieb Uwe Kleine-König:
> When a single person uses different variants of their real name and
> different email addresses, they appear as different persons in the
> hall of fame in the category "Commits".
>
> With this .mailmap the number of individual committers is reduced from
> 148 to 141 (as of ptxdist-2023.05.0) as produced by
>
> git shortlog -sn
I noticed some more when calling `git shortlog -s` or lets say
omitting '-n' which gives you alphabetic order. Not sure if those are
the same person, but I would guess so.
1 Andrej Gantvorg
1 Andrej.Gantvorg@wago.com
620 Bjoern Buerger
51 Bjørn Bürger
23 Denis OSTERLAND
22 Denis Osterland-Heim
14 Enrico Joerns
37 Enrico Jorns
11 Guillermo Rodriguez
16 Guillermo Rodríguez
3 grodriguez
936 Juergen Beisert
3 Jürgen Beisert
As said on IRC before, things differ if you additionally pass '-e' …
Greets
Alex
>
> .
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
> .mailmap | 7 +++++++
> 1 file changed, 7 insertions(+)
> create mode 100644 .mailmap
>
> diff --git a/.mailmap b/.mailmap
> new file mode 100644
> index 000000000000..c1c31f0237a0
> --- /dev/null
> +++ b/.mailmap
> @@ -0,0 +1,7 @@
> +Christian Gieseler <cg@eks-engel.de>
> +Denis Osterland-Heim <denis.osterland@diehl.com>
> +Florian Bäuerle <florian.baeuerle@allegion.com>
> +Ladislav Michl <Ladislav.Michl@seznam.cz>
> +Ladislav Michl <ladis@linux-mips.org>
> +Michael Olbrich <mol@freebie.lab.pengutronix.de>
> +Thorsten Liepert <thorsten.liepert@diehl.com>
>
> base-commit: 5015bfbd0347abfc20bcf0bfedf5b02670353924
> --
> 2.39.2
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCH] mailmap: Add a few entries for improved commit statistics
2023-06-07 14:24 ` Alexander Dahl
@ 2023-06-08 12:56 ` Michael Olbrich
0 siblings, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2023-06-08 12:56 UTC (permalink / raw)
To: Uwe Kleine-König, ptxdist
On Wed, Jun 07, 2023 at 04:24:22PM +0200, Alexander Dahl wrote:
> Hello Uwe,
>
> Am Wed, Jun 07, 2023 at 03:51:29PM +0200 schrieb Uwe Kleine-König:
> > When a single person uses different variants of their real name and
> > different email addresses, they appear as different persons in the
> > hall of fame in the category "Commits".
> >
> > With this .mailmap the number of individual committers is reduced from
> > 148 to 141 (as of ptxdist-2023.05.0) as produced by
> >
> > git shortlog -sn
>
> I noticed some more when calling `git shortlog -s` or lets say
> omitting '-n' which gives you alphabetic order. Not sure if those are
> the same person, but I would guess so.
>
> 1 Andrej Gantvorg
> 1 Andrej.Gantvorg@wago.com
>
> 620 Bjoern Buerger
> 51 Bjørn Bürger
>
> 23 Denis OSTERLAND
> 22 Denis Osterland-Heim
>
> 14 Enrico Joerns
> 37 Enrico Jorns
>
> 11 Guillermo Rodriguez
> 16 Guillermo Rodríguez
> 3 grodriguez
That looks correct to me.
> 936 Juergen Beisert
> 3 Jürgen Beisert
Those should be merged into
343 Juergen Borleis
Michael
>
> As said on IRC before, things differ if you additionally pass '-e' …
>
> Greets
> Alex
>
> >
> > .
> >
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > ---
> > .mailmap | 7 +++++++
> > 1 file changed, 7 insertions(+)
> > create mode 100644 .mailmap
> >
> > diff --git a/.mailmap b/.mailmap
> > new file mode 100644
> > index 000000000000..c1c31f0237a0
> > --- /dev/null
> > +++ b/.mailmap
> > @@ -0,0 +1,7 @@
> > +Christian Gieseler <cg@eks-engel.de>
> > +Denis Osterland-Heim <denis.osterland@diehl.com>
> > +Florian Bäuerle <florian.baeuerle@allegion.com>
> > +Ladislav Michl <Ladislav.Michl@seznam.cz>
> > +Ladislav Michl <ladis@linux-mips.org>
> > +Michael Olbrich <mol@freebie.lab.pengutronix.de>
> > +Thorsten Liepert <thorsten.liepert@diehl.com>
> >
> > base-commit: 5015bfbd0347abfc20bcf0bfedf5b02670353924
> > --
> > 2.39.2
> >
> >
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-06-08 12:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-07 13:51 [ptxdist] [PATCH] mailmap: Add a few entries for improved commit statistics Uwe Kleine-König
2023-06-07 14:24 ` Alexander Dahl
2023-06-08 12:56 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox