On Thu, Mar 28, 2024 at 4:54 PM Peter Krefting <peter@xxxxxxxxxxxxxxxx> wrote: > When bisect finds the target commit to display, it calls git diff-tree > to do so. This is a plumbing command that is not affected by the user's > log.date setting. Switch to instead use "git show", which does honor > it. > > Reported-by: Michael Osipov <michael.osipov@xxxxxxxxxxxxxx> > Signed-off-By: Peter Krefting <peter@xxxxxxxxxxxxxxxx> > --- > diff --git a/bisect.c b/bisect.c > @@ -959,23 +959,19 @@ static enum bisect_error check_good_are_ancestors_of_bad(struct repository *r, > + /* Invoke "git show --pretty=medium --shortstat --no-abbrev-commit --no-patch $object" */ > + strvec_pushl(&show.args, "show", "--pretty=medium", "--shortstat", "--no-abbrev-commit", "--no-patch", > + oid_to_hex(&commit->object.oid), NULL); > + show.git_cmd = 1; Nit: The comment doesn't tell the reader anything that the code itself isn't already clearly telling the reader, thus the comment is redundant and unnecessary. Moreover, the comment is likely to become outdated when people adjust the code but forget to update the comment. As such, I'd recommend dropping the comment altogether.