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 innocuous names. I'm not sure who these peop

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 Lastname ". Seems generally fine. I agree with Eric's comment

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 address in Git. Use a string >>> + with the following format to create a

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 format "p4user -> First Lastname ". > > With the cave

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 not a Perforce user, is this arrow "->" thingy

[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 --- Documentation/git-p4.txt | 11 + git-p4.py