All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Create .mailmap to fix unreachable email address
@ 2019-08-06 15:45 Akira Yokosawa
  2019-08-06 16:25 ` Paul E. McKenney
  0 siblings, 1 reply; 4+ messages in thread
From: Akira Yokosawa @ 2019-08-06 15:45 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

From 327971006462cbab7b5007717d7536b0e3947eb4 Mon Sep 17 00:00:00 2001
From: Akira Yokosawa <akiyks@gmail.com>
Date: Wed, 7 Aug 2019 00:15:12 +0900
Subject: [PATCH] Create .mailmap to fix unreachable email address

There are some commits with typo in my gmail address.
Although they can not be fixed after the fact, "git shortlog -se"
and "git show --use-mailmap" respect entries in .mailmap.

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
Hi Paul,

Inspired by discussion in another thread, I looked up the usage of
.mailmap in Git repository. It can be used to partially rescue typos
in email configs such as those made in the early days of my contributions.

This will prevent the unreachable address from being displayed by
"git shortlog -se" and the like.

        Thanks, Akira
-- 
 .mailmap | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 .mailmap

diff --git a/.mailmap b/.mailmap
new file mode 100644
index 00000000..c5d1cd3e
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1 @@
+<akiyks@gmail.com> <akiysw@gmail.com>
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Create .mailmap to fix unreachable email address
  2019-08-06 15:45 [PATCH] Create .mailmap to fix unreachable email address Akira Yokosawa
@ 2019-08-06 16:25 ` Paul E. McKenney
  2019-08-06 22:21   ` Akira Yokosawa
  0 siblings, 1 reply; 4+ messages in thread
From: Paul E. McKenney @ 2019-08-06 16:25 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Wed, Aug 07, 2019 at 12:45:34AM +0900, Akira Yokosawa wrote:
> >From 327971006462cbab7b5007717d7536b0e3947eb4 Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Wed, 7 Aug 2019 00:15:12 +0900
> Subject: [PATCH] Create .mailmap to fix unreachable email address
> 
> There are some commits with typo in my gmail address.
> Although they can not be fixed after the fact, "git shortlog -se"
> and "git show --use-mailmap" respect entries in .mailmap.
> 
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>

Good point, queued and pushed, thank you!

While in the area, I added commit to allow for my recent email address
change and some early git misconfiguration.  ;-)

							Thanx, Paul

> ---
> Hi Paul,
> 
> Inspired by discussion in another thread, I looked up the usage of
> .mailmap in Git repository. It can be used to partially rescue typos
> in email configs such as those made in the early days of my contributions.
> 
> This will prevent the unreachable address from being displayed by
> "git shortlog -se" and the like.
> 
>         Thanks, Akira
> -- 
>  .mailmap | 1 +
>  1 file changed, 1 insertion(+)
>  create mode 100644 .mailmap
> 
> diff --git a/.mailmap b/.mailmap
> new file mode 100644
> index 00000000..c5d1cd3e
> --- /dev/null
> +++ b/.mailmap
> @@ -0,0 +1 @@
> +<akiyks@gmail.com> <akiysw@gmail.com>
> -- 
> 2.17.1
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Create .mailmap to fix unreachable email address
  2019-08-06 16:25 ` Paul E. McKenney
@ 2019-08-06 22:21   ` Akira Yokosawa
  2019-08-07  0:31     ` Paul E. McKenney
  0 siblings, 1 reply; 4+ messages in thread
From: Akira Yokosawa @ 2019-08-06 22:21 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

On Tue, 6 Aug 2019 09:25:44 -0700, Paul E. McKenney wrote:
> On Wed, Aug 07, 2019 at 12:45:34AM +0900, Akira Yokosawa wrote:
>> >From 327971006462cbab7b5007717d7536b0e3947eb4 Mon Sep 17 00:00:00 2001
>> From: Akira Yokosawa <akiyks@gmail.com>
>> Date: Wed, 7 Aug 2019 00:15:12 +0900
>> Subject: [PATCH] Create .mailmap to fix unreachable email address
>>
>> There are some commits with typo in my gmail address.
>> Although they can not be fixed after the fact, "git shortlog -se"
>> and "git show --use-mailmap" respect entries in .mailmap.
>>
>> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> 
> Good point, queued and pushed, thank you!
> 
> While in the area, I added commit to allow for my recent email address
> change and some early git misconfiguration.  ;-)

The email address on the front page also needs update, doesn't it? ;-)

        Thanks, Akira

> 
> 							Thanx, Paul
> 
>> ---
>> Hi Paul,
>>
>> Inspired by discussion in another thread, I looked up the usage of
>> .mailmap in Git repository. It can be used to partially rescue typos
>> in email configs such as those made in the early days of my contributions.
>>
>> This will prevent the unreachable address from being displayed by
>> "git shortlog -se" and the like.
>>
>>         Thanks, Akira
>> -- 
>>  .mailmap | 1 +
>>  1 file changed, 1 insertion(+)
>>  create mode 100644 .mailmap
>>
>> diff --git a/.mailmap b/.mailmap
>> new file mode 100644
>> index 00000000..c5d1cd3e
>> --- /dev/null
>> +++ b/.mailmap
>> @@ -0,0 +1 @@
>> +<akiyks@gmail.com> <akiysw@gmail.com>
>> -- 
>> 2.17.1
>>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Create .mailmap to fix unreachable email address
  2019-08-06 22:21   ` Akira Yokosawa
@ 2019-08-07  0:31     ` Paul E. McKenney
  0 siblings, 0 replies; 4+ messages in thread
From: Paul E. McKenney @ 2019-08-07  0:31 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Wed, Aug 07, 2019 at 07:21:43AM +0900, Akira Yokosawa wrote:
> On Tue, 6 Aug 2019 09:25:44 -0700, Paul E. McKenney wrote:
> > On Wed, Aug 07, 2019 at 12:45:34AM +0900, Akira Yokosawa wrote:
> >> >From 327971006462cbab7b5007717d7536b0e3947eb4 Mon Sep 17 00:00:00 2001
> >> From: Akira Yokosawa <akiyks@gmail.com>
> >> Date: Wed, 7 Aug 2019 00:15:12 +0900
> >> Subject: [PATCH] Create .mailmap to fix unreachable email address
> >>
> >> There are some commits with typo in my gmail address.
> >> Although they can not be fixed after the fact, "git shortlog -se"
> >> and "git show --use-mailmap" respect entries in .mailmap.
> >>
> >> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> > 
> > Good point, queued and pushed, thank you!
> > 
> > While in the area, I added commit to allow for my recent email address
> > change and some early git misconfiguration.  ;-)
> 
> The email address on the front page also needs update, doesn't it? ;-)

As does a pile of other instances of that address!  Thank you for the
reminder, I will fix.

							Thanx, Paul

>         Thanks, Akira
> 
> > 
> > 							Thanx, Paul
> > 
> >> ---
> >> Hi Paul,
> >>
> >> Inspired by discussion in another thread, I looked up the usage of
> >> .mailmap in Git repository. It can be used to partially rescue typos
> >> in email configs such as those made in the early days of my contributions.
> >>
> >> This will prevent the unreachable address from being displayed by
> >> "git shortlog -se" and the like.
> >>
> >>         Thanks, Akira
> >> -- 
> >>  .mailmap | 1 +
> >>  1 file changed, 1 insertion(+)
> >>  create mode 100644 .mailmap
> >>
> >> diff --git a/.mailmap b/.mailmap
> >> new file mode 100644
> >> index 00000000..c5d1cd3e
> >> --- /dev/null
> >> +++ b/.mailmap
> >> @@ -0,0 +1 @@
> >> +<akiyks@gmail.com> <akiysw@gmail.com>
> >> -- 
> >> 2.17.1
> >>
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-08-07  0:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-06 15:45 [PATCH] Create .mailmap to fix unreachable email address Akira Yokosawa
2019-08-06 16:25 ` Paul E. McKenney
2019-08-06 22:21   ` Akira Yokosawa
2019-08-07  0:31     ` Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.