On Tue, Aug 2, 2011 at 1:29 PM, Jon Seymour [off-list ref] wrote:
If --no-checkout is specified, then the bisection process uses:
Yeah, but in this patch you are changing "git bisect--helper" by
adding the [--bisect-mode=checkout|update-ref] option. So it is
strange that you still talk about a --no-checkout option.
git update-ref --no-deref HEAD <trial>
at each trial instead of:
git checkout <trial>
[...]
int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
{
int next_all = 0;
+ int no_checkout = 0;
+ char *bisect_mode=NULL;
struct option options[] = {
OPT_BOOLEAN(0, "next-all", &next_all,
"perform 'git bisect next'"),
+ OPT_STRING(0, "bisect-mode", &bisect_mode, "mode",
+ "the bisection mode either checkout or update-ref. defaults to checkout."),
Nit: I would say : "bisection mode: 'checkout' (default) or 'update-ref'"
Thanks,
Christian.