Skip to content

Commit 15f7d49

Browse files
Philip Oakleygitster
authored andcommitted
builtin/help.c: split "-a" processing into two
"help -a" (help all) gives the list of available commands and then further gives hints on the use of "git help". Separate these into two steps, because we will add "help -g" (help guides) that want to also show the overall hints after it is done. While at it, change the definition of the "-a" option to use OPT_BOOL, not the deprecated OPT_BOOLEAN. We do not behave differently when the user gives the "-a" option multiple times, e.g. "git help -a -a". Signed-off-by: Philip Oakley <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 961c512 commit 15f7d49

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

builtin/help.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static int show_all = 0;
3939
static unsigned int colopts;
4040
static enum help_format help_format = HELP_FORMAT_NONE;
4141
static struct option builtin_help_options[] = {
42-
OPT_BOOLEAN('a', "all", &show_all, N_("print all available commands")),
42+
OPT_BOOL('a', "all", &show_all, N_("print all available commands")),
4343
OPT_SET_INT('m', "man", &help_format, N_("show man page"), HELP_FORMAT_MAN),
4444
OPT_SET_INT('w', "web", &help_format, N_("show manual in web browser"),
4545
HELP_FORMAT_WEB),
@@ -428,7 +428,13 @@ int cmd_help(int argc, const char **argv, const char *prefix)
428428
git_config(git_help_config, NULL);
429429
printf(_("usage: %s%s"), _(git_usage_string), "\n\n");
430430
list_commands(colopts, &main_cmds, &other_cmds);
431+
}
432+
433+
if (show_all) {
431434
printf("%s\n", _(git_more_info_string));
435+
/*
436+
* We're done. Ignore any remaining args
437+
*/
432438
return 0;
433439
}
434440

0 commit comments

Comments
 (0)