Hi Beat, Thanks for doing this. It was on my todo list but I've been quite busy recently. On Sat, Sep 05, 2020 at 09:24:06PM +0200, Beat Bolli wrote: > In 1f0fc1db8599 (pretty: implement 'reference' format, 2019-11-19), the > "reference" format was added. As a built-in format, it cannot be > overridden, although different projects may have divergent conventions > on how to format a commit reference. E.g., Git uses > > <hash> (<subject>, <short-date>) [1] > > while Linux uses > > <hash> ("<subject>") [2] > > Teach pretty to look at a different set of config variables, all > starting with "override" (e.g. "pretty.overrideReference"), to override > the built-in formats. Note that a format called "override" by itself is > not affected. The prefix was chosen to make it clear to the user that > this should not be done without thought, as it may cause issues with > other tools that expect the built-in formats to be immutable. Hmm, I'm not sure how I feel about being able to override formats other than "reference". Perhaps we could special-case "reference" instead of providing users with a possible foot-gun? > [1] https://github.com/git/git/blob/3a238e539bcdfe3f9eb5010fd218640c1b499f7a/Documentation/SubmittingPatches#L144 > [2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v5.9-rc3#n167 > > Signed-off-by: Beat Bolli <dev+git@xxxxxxxxx> > --- > I intend to also submit a patch to gitk that will use "git show -s > --pretty=reference" if it is available, with a fallback to reading > "pretty.overrideReference", so there's a single point of configuration > for the reference format. Very good, I'm in favour of this.