Re: [PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread Torsten Bögershausen
+ ( + cd "$git" && + git init . && + git config --add git-p4.mapUser "mmax -> Max Mustermann " && + git config --add git-p4.mapUser "mo -> Moritz Untreu " && Probably better to use more

Re: [PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread Luke Diamand
On 28 February 2016 at 10:25, wrote: > From: Lars Schneider > > Map a P4 user to a specific name and email address in Git with the > "git-p4.mapUser" config. The config value must be a string adhering > to the format "p4user -> First

Re: [PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread Eric Sunshine
On Sun, Feb 28, 2016 at 12:05 PM, Lars Schneider wrote: > On 28 Feb 2016, at 17:19, Eric Sunshine wrote: >> On Sun, Feb 28, 2016 at 5:25 AM, wrote: >>> +git-p4.mapUser:: >>> + Map a P4 user to a name and email

Re: [PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread Lars Schneider
On 28 Feb 2016, at 17:19, Eric Sunshine wrote: > On Sun, Feb 28, 2016 at 5:25 AM, wrote: >> Map a P4 user to a specific name and email address in Git with the >> "git-p4.mapUser" config. The config value must be a string adhering >> to the

Re: [PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread Eric Sunshine
On Sun, Feb 28, 2016 at 5:25 AM, wrote: > Map a P4 user to a specific name and email address in Git with the > "git-p4.mapUser" config. The config value must be a string adhering > to the format "p4user -> First Lastname ". With the caveat that I'm

[PATCH v1] git-p4: map a P4 user to Git author name and email address

2016-02-28 Thread larsxschneider
From: Lars Schneider Map a P4 user to a specific name and email address in Git with the "git-p4.mapUser" config. The config value must be a string adhering to the format "p4user -> First Lastname ". Signed-off-by: Lars Schneider