On Thu, Nov 23, 2017 at 11:19:42AM +0900, Junio C Hamano wrote: > Jeff King <peff@xxxxxxxx> writes: > > > And lazy-load wouldn't help you there for a normal: > > > > git log > > > > But what's interesting in your command is the pretty-format. Even though > > decoration is turned on, your format doesn't show any. So we never > > actually ask "is this commit decorated" and the lazy-load helps. > > Hmph, I wonder if we can detect this case and not make a call to > load decorations in the first place. That would remove the need to > remember the options when load is called so that we can use it when > we load decorations lazily later. Probably userformat_find_requirements() could (and should) be taught to report on decoration flags, like it does for notes. As it is now we call load_ref_decorations() repeatedly while processing the commits (which works because it's a noop after the first call). And once we can do that, it would be easy to do something like: if (decoration_style && !want->decorations) decoration_style = 0; But I think that may only be part of the story. Do all of the output formats show decorations? I think --format=email, for instance, does not. So the real question is not just "does the user format want decorations", but "does the pretty format want decorations". Which requires knowing things about each format that might get out of sync with the rest of the code. That might be OK if it lives in pretty.c. But the lazy-load thing make sit just work without having to duplicate the logic at all. -Peff