-
Notifications
You must be signed in to change notification settings - Fork 26.8k
bisect: fix handling of help
and invalid subcommands
#2078
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: maint
Are you sure you want to change the base?
Conversation
Welcome to GitGitGadgetHi @ZhongRuoyu, and welcome to GitGitGadget, the GitHub App to send patch series to the Git mailing list from GitHub Pull Requests. Please make sure that either:
You can CC potential reviewers by adding a footer to the PR description with the following syntax:
NOTE: DO NOT copy/paste your CC list from a previous GGG PR's description, Also, it is a good idea to review the commit messages one last time, as the Git project expects them in a quite specific form:
It is in general a good idea to await the automated test ("Checks") in this Pull Request before contributing the patches, e.g. to avoid trivial issues such as unportable code. Contributing the patchesBefore you can contribute the patches, your GitHub username needs to be added to the list of permitted users. Any already-permitted user can do that, by adding a comment to your PR of the form Both the person who commented An alternative is the channel
Once on the list of permitted usernames, you can contribute the patches to the Git mailing list by adding a PR comment If you want to see what email(s) would be sent for a After you submit, GitGitGadget will respond with another comment that contains the link to the cover letter mail in the Git mailing list archive. Please make sure to monitor the discussion in that thread and to address comments and suggestions (while the comments and suggestions will be mirrored into the PR by GitGitGadget, you will still want to reply via mail). If you do not want to subscribe to the Git mailing list just to be able to respond to a mail, you can download the mbox from the Git mailing list archive (click the curl -g --user "<EMailAddress>:<Password>" \
--url "imaps://imap.gmail.com/INBOX" -T /path/to/raw.txt To iterate on your change, i.e. send a revised patch or patch series, you will first want to (force-)push to the same branch. You probably also want to modify your Pull Request description (or title). It is a good idea to summarize the revision by adding something like this to the cover letter (read: by editing the first comment on the PR, i.e. the PR description):
To send a new iteration, just add another PR comment with the contents: Need help?New contributors who want advice are encouraged to join git-mentoring@googlegroups.com, where volunteers who regularly contribute to Git are willing to answer newbie questions, give advice, or otherwise provide mentoring to interested contributors. You must join in order to post or view messages, but anyone can join. You may also be able to find help in real time in the developer IRC channel, |
b74fb1b
to
c2b2d22
Compare
As documented in git-bisect(1), `git bisect help` should display usage information. However, since the migration of `git bisect` to a full builtin command in 73fce29 (Turn `git bisect` into a full built-in, 2022-11-10), this behavior was broken. Running `git bisect help` would, instead of showing usage, either fail silently if already in a bisect session, or otherwise trigger an interactive autostart prompt asking "Do you want me to do it for you [Y/n]?". Similarly, since df63421 (bisect--helper: handle states directly, 2022-11-10), running invalid subcommands like `git bisect foobar` also led to the same behavior. This occurred because `help` and other unrecognized subcommands were being unconditionally passed to `bisect_state`, which then called `bisect_autostart`, triggering the interactive prompt. Fix this by: 1. Adding explicit handling for the `help` subcommand to show usage; 2. Validating that unrecognized commands are actually valid state commands before calling `bisect_state`; 3. Showing an error with usage for truly invalid commands. This ensures that `git bisect help` displays the usage as documented, and invalid commands fail cleanly without entering interactive mode. Alternate terms are still handled correctly through 8000 `check_and_set_terms`. Signed-off-by: Ruoyu Zhong <zhongruoyu@outlook.com>
c2b2d22
to
04a7d21
Compare
/allow |
User ZhongRuoyu is now allowed to use GitGitGadget. |
/preview |
Preview email sent as pull.2078.git.git.1761121897386.gitgitgadget@gmail.com |
/submit |
Submitted as pull.2078.git.git.1761122173126.gitgitgadget@gmail.com To fetch this version into
To fetch this version to local tag
|
On the Git mailing list, Ben Knoble wrote (reply to this): > Le 22 oct. 2025 à 04:37, Ruoyu Zhong via GitGitGadget <gitgitgadget@gmail.com> a écrit :
>
> From: Ruoyu Zhong <zhongruoyu@outlook.com>
>
> As documented in git-bisect(1), `git bisect help` should display usage
> information. However, since the migration of `git bisect` to a full
> builtin command in 73fce29427 (Turn `git bisect` into a full built-in,
> 2022-11-10), this behavior was broken. Running `git bisect help` would,
> instead of showing usage, either fail silently if already in a bisect
> session, or otherwise trigger an interactive autostart prompt asking "Do
> you want me to do it for you [Y/n]?".
Good catch!
FWIW, in this project we describe the buggy behavior in the present tense (« is broken », « Running git bisect shows », etc.)
>
> Similarly, since df63421be9 (bisect--helper: handle states directly,
> 2022-11-10), running invalid subcommands like `git bisect foobar` also
> led to the same behavior.
>
> This occurred because `help` and other unrecognized subcommands were
> being unconditionally passed to `bisect_state`, which then called
> `bisect_autostart`, triggering the interactive prompt.
>
> Fix this by:
> 1. Adding explicit handling for the `help` subcommand to show usage;
> 2. Validating that unrecognized commands are actually valid state
> commands before calling `bisect_state`;
> 3. Showing an error with usage for truly invalid commands.
>
> This ensures that `git bisect help` displays the usage as documented,
> and invalid commands fail cleanly without entering interactive mode.
> Alternate terms are still handled correctly through
> `check_and_set_terms`.
>
> Signed-off-by: Ruoyu Zhong <zhongruoyu@outlook.com>
> ---
> bisect: fix handling of help and invalid subcommands
>
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2078%2FZhongRuoyu%2Fgit-bisect-subcommands-v1
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2078/ZhongRuoyu/git-bisect-subcommands-v1
> Pull-Request: https://github.com/git/git/pull/2078
>
> builtin/bisect.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/builtin/bisect.c b/builtin/bisect.c
> index 8b8d870cd1..993caf545d 100644
> --- a/builtin/bisect.c
> +++ b/builtin/bisect.c
> @@ -1453,9 +1453,13 @@ int cmd_bisect(int argc,
> if (!argc)
> usage_msg_opt(_("need a command"), git_bisect_usage, options);
>
> + if (!strcmp(argv[0], "help"))
> + usage_with_options(git_bisect_usage, options);
> +
From an extremely quick look at the code, this might be better handled with a new OPT_SUBCOMMAND, though that might mean making the options array statically scoped to this file rather than the function.
It would also be nice to update the usage to match the manual while we’re here, which presumably in turn affects the test between command usage and manuals.
> set_terms(&terms, "bad", "good");
> get_terms(&terms);
> - if (check_and_set_terms(&terms, argv[0]))
> + if (check_and_set_terms(&terms, argv[0]) ||
> + !one_of(argv[0], terms.term_good, terms.term_bad, NULL))
> usage_msg_optf(_("unknown command: '%s'"), git_bisect_usage,
> options, argv[0]);
> res = bisect_state(&terms, argc, argv);
>
> base-commit: 81f86aacc4eb74cdb9c2c8082d36d2070c666045
> --
> gitgitgadget
I think this part is OK, since we only intend to check this when using the « git bisect <term> » form. |
User |
On the Git mailing list, Junio C Hamano wrote (reply to this): "Ruoyu Zhong via GitGitGadget" <gitgitgadget@gmail.com> writes:
> From: Ruoyu Zhong <zhongruoyu@outlook.com>
>
> As documented in git-bisect(1), `git bisect help` should display usage
> information. However, since the migration of `git bisect` to a full
> builtin command in 73fce29427 (Turn `git bisect` into a full built-in,
> 2022-11-10), this behavior was broken. Running `git bisect help` would,
> instead of showing usage, either fail silently if already in a bisect
> session, or otherwise trigger an interactive autostart prompt asking "Do
> you want me to do it for you [Y/n]?".
>
> Similarly, since df63421be9 (bisect--helper: handle states directly,
> 2022-11-10), running invalid subcommands like `git bisect foobar` also
> led to the same behavior.
>
> This occurred because `help` and other unrecognized subcommands were
> being unconditionally passed to `bisect_state`, which then called
> `bisect_autostart`, triggering the interactive prompt.
Very good observations.
> diff --git a/builtin/bisect.c b/builtin/bisect.c
> index 8b8d870cd1..993caf545d 100644
> --- a/builtin/bisect.c
> +++ b/builtin/bisect.c
> @@ -1453,9 +1453,13 @@ int cmd_bisect(int argc,
> if (!argc)
> usage_msg_opt(_("need a command"), git_bisect_usage, options);
>
> + if (!strcmp(argv[0], "help"))
> + usage_with_options(git_bisect_usage, options);
I briefly wondered why
$ git grep 'strcmp.*"help"'
gives a single hit in parse-options.c but that is simply because
"git bisect" is an oddball. Everybody, including "git bisect"
itself, takes "git <cmd> --help", but in addition, "git bisect" also
takes "git bisect help". So this addition is unfortunate but cannot
be helped (no pun intended). In an ideal world, as we support the
bog standard "--help", if we could remove "help" as a subcommand,
then the other part of this patch would take care of "bisect help"
without this part by saying "unknown command" ;-) but we cannot
retroactively do so now.
I also wonder if it would be cleaner to add "help" as a genuine
subcommand to the options[] table just like all the other
subcommands. The above would not be needed if we did so. But I do
not see huge upside for doing so (i.e., a single strcmp() with a
call like we see above, vs. a new helper function to make the same
call, to usage_with_options()), so what is written in this patch is
perfectly fine.
> set_terms(&terms, "bad", "good");
> get_terms(&terms);
> - if (check_and_set_terms(&terms, argv[0]))
> + if (check_and_set_terms(&terms, argv[0]) ||
> + !one_of(argv[0], terms.term_good, terms.term_bad, NULL))
> usage_msg_optf(_("unknown command: '%s'"), git_bisect_usage,
> options, argv[0]);
This change is a bit hard to reason about, so let me think aloud.
If we were saying "git bisect olde" after somehow changing bad/good
to newe/olde, then we do not want to say "unknown command", and the
way it avoids that is to see if the given command is one of the
terms check_and_set_terms() have updated.
In other words, if argv[0] caused check_and_set_terms() to return
non-zero, we do not have to do "unknown command", because the helper
would have issued a warning already. When it returns 0, it may be
because it saw a valid command "skip", etc. that cannot be a custom
good/bad/new/old (in which case our one_of() would be false and we
end up saying "unknown command"---have I just spot a bug???), or we
haven't set custom terms and argv[0] is one of bad/good/new/old (in
which case our one_of() would be true and we avoid saying "unknown
command").
And it turns out that my finding about the 'skip' etc. is not a bug,
as these valid commands that cannot be good/bad/new/old aliases are
already caught by parse_options() call and we know argv[0] is not
such a valid subcommand.
So after all this looks good.
Thanks. Will queue. |
On the Git mailing list, Ruoyu Zhong wrote (reply to this): Hi Ben,
Thanks for the review!
> On Oct 23, 2025, at 1:52 AM, Ben Knoble <ben.knoble@gmail.com> wrote:
>
> Good catch!
>
> FWIW, in this project we describe the buggy behavior in the present tense (« is broken », « Running git bisect shows », etc.)
Thanks! Will keep this in mind.
>> diff --git a/builtin/bisect.c b/builtin/bisect.c
>> index 8b8d870cd1..993caf545d 100644
>> --- a/builtin/bisect.c
>> +++ b/builtin/bisect.c
>> @@ -1453,9 +1453,13 @@ int cmd_bisect(int argc,
>> if (!argc)
>> usage_msg_opt(_("need a command"), git_bisect_usage, options);
>>
>> + if (!strcmp(argv[0], "help"))
>> + usage_with_options(git_bisect_usage, options);
>> +
>
> From an extremely quick look at the code, this might be better handled with a new OPT_SUBCOMMAND, though that might mean making the options array statically scoped to this file rather than the function.
I intended to keep it simple so I did not make it an OPT_SUBCOMMAND at the first
place. Given that Junio is okay with it, I'm going to keep it as is for now.
Still happy to turn this into an OPT_SUBCOMMAND if you would like.
> It would also be nice to update the usage to match the manual while we’re here, which presumably in turn affects the test between command usage and manuals.
Thanks for pointing that out! Yes, I think so too. Will do in a separate patch,
if you agree, in order not to digress too much.
Regards,
Ruoyu
|
On the Git mailing list, Ruoyu Zhong wrote (reply to this): Hi Junio,
I appreciate your detailed and thoughtful analysis and I resonate with your
points. Specifically:
> I also wonder if it would be cleaner to add "help" as a genuine
> subcommand to the options[] table just like all the other
> subcommands. The above would not be needed if we did so. But I do
> not see huge upside for doing so (i.e., a single strcmp() with a
> call like we see above, vs. a new helper function to make the same
> call, to usage_with_options()), so what is written in this patch is
> perfectly fine.
Agreed. Will keep this as is, as I also mentioned in my response to Ben.
>> set_terms(&terms, "bad", "good");
>> get_terms(&terms);
>> - if (check_and_set_terms(&terms, argv[0]))
>> + if (check_and_set_terms(&terms, argv[0]) ||
>> + !one_of(argv[0], terms.term_good, terms.term_bad, NULL))
>> usage_msg_optf(_("unknown command: '%s'"), git_bisect_usage,
>> options, argv[0]);
>
> This change is a bit hard to reason about, so let me think aloud.
>
> If we were saying "git bisect olde" after somehow changing bad/good
> to newe/olde, then we do not want to say "unknown command", and the
> way it avoids that is to see if the given command is one of the
> terms check_and_set_terms() have updated.
>
> In other words, if argv[0] caused check_and_set_terms() to return
> non-zero, we do not have to do "unknown command", because the helper
> would have issued a warning already. When it returns 0, it may be
> because it saw a valid command "skip", etc. that cannot be a custom
> good/bad/new/old (in which case our one_of() would be false and we
> end up saying "unknown command"---have I just spot a bug???), or we
> haven't set custom terms and argv[0] is one of bad/good/new/old (in
> which case our one_of() would be true and we avoid saying "unknown
> command").
>
> And it turns out that my finding about the 'skip' etc. is not a bug,
> as these valid commands that cannot be good/bad/new/old aliases are
> already caught by parse_options() call and we know argv[0] is not
> such a valid subcommand.
>
> So after all this looks good.
Thank you for walking through this. This is very helpful and also matches my own
thought process when I first looked at it. The key is that this part of the code
is only reached if fn is still NULL after parse_options, i.e., argv[0] is not
one of the known subcommands.
Regards,
Ruoyu
|
cc: Ben Knoble ben.knoble@gmail.com