On 24/12/06 03:33PM, Kristoffer Haugsbakk wrote: > On Fri, Dec 6, 2024, at 13:28, Patrick Steinhardt wrote: > > Recently it was reported [1] that "look for the youngest reachable > > commit with log message that match the given pattern" syntax (e.g. > > ':/<PATTERN>' or 'HEAD^{/<PATTERN>}') started to return results in > > But the regression is only for `:/`. Not for `HEAD^{/}`. I’m sorry > that I wasn’t clear in my previous message[1] since I didn’t establish > the context properly: > > I have indeed noticed that `HEAD^{/}` returns a sensible thing while > `:/` does something strange like finding the root commit. > > What I had noticed myself for a little while was that `HEAD^{/}` on > Git 2.47.0 did something that I wanted (and which is documented) while > `:/` behaved (behaves) weirdly. I just shrugged that off since the > second syntax is more useful anyway (like Junio said). I was a bit curious why the regression only affected the `:/` syntax but not `HEAD^{/}` as they both use `get_oid_oneline()`. The commit list that was getting reversed only ever contain the reference commits themselves and not the commits being traversed to find the matching commit (that part comes a bit later). This means it is not a problem when there is only a single reference being traversed as in the case of `HEAD^{/}`. So this fix looks good. :) -Justin