Re: [PATCH v13 4/8] bisect: introduce support for --no-checkout option.
From: Jon Seymour <hidden>
Date: 2016-06-15 22:51:43
On Tue, Aug 2, 2011 at 10:16 PM, Christian Couder [off-list ref] wrote:
On Tue, Aug 2, 2011 at 1:29 PM, Jon Seymour [off-list ref] wrote:quoted
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.quoted
git update-ref --no-deref HEAD <trial> at each trial instead of: git checkout <trial>[...]quoted
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. Will address iboth comments s a future iteration. jon.