Hmm …
Hmm …
Posted Nov 9, 2018 19:52 UTC (Fri) by mathstuf (subscriber, #69389)In reply to: Hmm … by epa
Parent article: Apache Subversion 1.11.0 released
I think this would be handled well with a `git bisect --first-parent` option which bisects the first-parent history and then starts bisecting the history between the two commits recursively on the remaining history using the same first-parent semantics. Then your "groupings" are exactly merges.
Posted Nov 12, 2018 4:17 UTC (Mon)
by neilbrown (subscriber, #359)
[Link] (2 responses)
What version of git do you need? Do you give "--first-parent" when you "git bisect start" or on every "git bisect good/bad"??
"revision.c" in current git contains the line
revision.c: die(_("--first-parent is incompatible with --bisect"));
which makes me wonder....
Posted Nov 12, 2018 8:26 UTC (Mon)
by smurf (subscriber, #17840)
[Link]
If you only do first-parent then you may end up at the point where your only possible refinement is to start bisecting a group, which you forbade git to do – after all, you used "--first-parent".
Thus, this situation requires additional code – which hasn't been implemented yet.
Posted Nov 12, 2018 16:24 UTC (Mon)
by mathstuf (subscriber, #69389)
[Link]
Hmm …
Hmm …
Hmm …