From: Junio C Hamano <gitster@pobox.com>
To: Christian Couder <christian.couder@gmail.com>
Cc: git@vger.kernel.org, Patrick Steinhardt <ps@pks.im>,
Elijah Newren <newren@gmail.com>, Jeff King <peff@peff.net>,
"brian m . carlson" <sandals@crustytoothpaste.net>,
Johannes Schindelin <Johannes.Schindelin@gmx.de>,
Justin Tobler <jltobler@gmail.com>
Subject: Re: [PATCH 2/6] bisect: fix "--" detection when a term name is "--"
Date: Wed, 02 Sep 2026 15:30:23 -0700 [thread overview]
Message-ID: <xmqqse3rffr4.fsf@gitster.g> (raw)
In-Reply-To: <20260902161047.476753-3-christian.couder@gmail.com> (Christian Couder's message of "Wed, 2 Sep 2026 18:10:43 +0200")
Christian Couder <christian.couder@gmail.com> writes:
> `bisect_start()` walks its arguments twice. The second loop actually
> parses the options, and it knows that `--term-good`, `--term-old`,
> `--term-bad` and `--term-new` take their value as a separate argument,
> so it skips that value.
>
> The first loop, which only looks for the "--" separating revisions from
> paths, doesn't know about these options. So when such an option is given
> "--" as its value, that "--" is mistaken for the separator and
> `has_double_dash` is wrongly set.
It may be theoretically true, but I wonder how much practical value
it has to correctly parse "--term-good --" as "Ah, the user wants to
mark good revisions as '--' instead of 'good' or 'old'"? Even
though "refs/bisect/--" is *not* forbidden, how likely is it for
users to do that?
This is not like "git grep -e --" which does have much more pracical
value.
> builtin/bisect.c | 27 +++++++++++++++++++++------
> t/t6030-bisect-porcelain.sh | 8 ++++++++
> 2 files changed, 29 insertions(+), 6 deletions(-)
>
> diff --git a/builtin/bisect.c b/builtin/bisect.c
> index 1cfb8a794b..ad089b289f 100644
> --- a/builtin/bisect.c
> +++ b/builtin/bisect.c
> @@ -803,6 +803,19 @@ static enum bisect_error bisect_auto_next(struct bisect_terms *terms,
> return bisect_next(terms, prefix);
> }
>
> +/*
> + * The options "git bisect start" accepts. Only the ones taking their
> + * value as a separate argument matter to the scan looking for "--" below,
> + * as their value has to be skipped along with them.
> + */
> +static const struct early_scan_option bisect_start_early_options[] = {
> + EARLY_SCAN_SKIP_VALUE("term-good"),
> + EARLY_SCAN_SKIP_VALUE("term-old"),
> + EARLY_SCAN_SKIP_VALUE("term-bad"),
> + EARLY_SCAN_SKIP_VALUE("term-new"),
> + EARLY_SCAN_END()
> +};
> +
> static enum bisect_error bisect_start(struct bisect_terms *terms, int argc,
> const char **argv)
> {
> @@ -825,13 +838,15 @@ static enum bisect_error bisect_start(struct bisect_terms *terms, int argc,
>
> /*
> * Check for one bad and then some good revisions
> + *
> + * The scan below has to know about the options taking their value
> + * as a separate argument, or such a value that happens to be "--"
> + * would be mistaken for the "--" separating revisions from paths.
> */
> - for (i = 0; i < argc; i++) {
> - if (!strcmp(argv[i], "--")) {
> - has_double_dash = 1;
> - break;
> - }
> - }
> + i = early_scan_options(argc, argv, bisect_start_early_options,
> + EARLY_SCAN_STOP_AT_DASHDASH, NULL, NULL);
> + if (i < argc)
> + has_double_dash = 1;
>
> for (i = 0; i < argc; i++) {
> const char *arg = argv[i];
> diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh
> index a7588222a8..464ca53b42 100755
> --- a/t/t6030-bisect-porcelain.sh
> +++ b/t/t6030-bisect-porcelain.sh
> @@ -1297,6 +1297,14 @@ test_expect_success 'bisect start takes options and revs in any order' '
> test_cmp expected actual
> '
>
> +test_expect_success 'bisect start with "--" as a term name' '
> + git bisect reset &&
> + git bisect start --term-good -- hello &&
> + git bisect terms --term-good >actual &&
> + echo -- >expected &&
> + test_cmp expected actual
> +'
> +
> # Bisect is started with --term-new and --term-old arguments,
> # then skip. The HEAD should be changed.
> test_expect_success 'bisect skip works with --term*' '
next prev parent reply other threads:[~2026-09-02 22:30 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-02 16:10 [PATCH 0/6] Standardize early option scanning to fix argument parsing bugs Christian Couder
2026-09-02 16:10 ` [PATCH 1/6] parse-options: add early_scan_options() Christian Couder
2026-09-02 22:11 ` Junio C Hamano
2026-09-02 16:10 ` [PATCH 2/6] bisect: fix "--" detection when a term name is "--" Christian Couder
2026-09-02 22:30 ` Junio C Hamano [this message]
2026-09-02 16:10 ` [PATCH 3/6] rev-parse: fix "--" detection when it is an option value Christian Couder
2026-09-02 16:10 ` [PATCH 4/6] parse-options: add parse_options_takes_argument() Christian Couder
2026-09-02 16:10 ` [PATCH 5/6] parse-options: build early scan options from a struct option array Christian Couder
2026-09-02 16:10 ` [PATCH 6/6] fast-import: use early_scan_options() for --allow-unsafe-features Christian Couder
2026-09-04 3:38 ` Junio C Hamano
2026-09-02 18:52 ` [PATCH 0/6] Standardize early option scanning to fix argument parsing bugs Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqqse3rffr4.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=christian.couder@gmail.com \
--cc=git@vger.kernel.org \
--cc=jltobler@gmail.com \
--cc=newren@gmail.com \
--cc=peff@peff.net \
--cc=ps@pks.im \
--cc=sandals@crustytoothpaste.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox