Re: [PATCH 1/1] Add author and committer configuration settings

2019-01-02 Thread Junio C Hamano
William Hubbs writes: > Subject: Re: [PATCH 1/1] Add author and committer configuration settings Perhaps something like this Subject: config: allow giving separate author and committer idents would fit better in "git shortlog --no-merges" output. >

Re: [PATCH 1/1] Add author and committer configuration settings

2018-12-21 Thread Johannes Schindelin
Hi William, thank you for putting this together. On Wed, 19 Dec 2018, William Hubbs wrote: > -extern const char *fmt_name(const char *name, const char *email); > +extern const char *fmt_committer_name(void); If it would not be too much trouble for you, could I ask you to split this change out i

Re: [PATCH 1/1] Add author and committer configuration settings

2018-12-19 Thread John Passaro
On Wed, Dec 19, 2018 at 2:19 PM William Hubbs wrote: > > The author.email, author.name, committer.email and committer.name > settings are analogous to the GIT_AUTHOR_* and GIT_COMMITTER_* > environment variables, but for the git config system. This allows them > to be set separatel

[PATCH 1/1] Add author and committer configuration settings

2018-12-19 Thread William Hubbs
The author.email, author.name, committer.email and committer.name settings are analogous to the GIT_AUTHOR_* and GIT_COMMITTER_* environment variables, but for the git config system. This allows them to be set separately for each repository. Signed-off-by: William Hubbs --- Docum