diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2022-02-21 20:38:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-23 13:41:37 -0800 |
commit | 1ce590133b545aa735683f46003d12df624d67af (patch) | |
tree | cc0a4a943280fe23bf58b5914b474a9048b17663 /help.h | |
parent | 503cddacb63b9a37d063de5b11ac188de822e06f (diff) | |
download | git-1ce590133b545aa735683f46003d12df624d67af.tar.gz |
help: add --no-[external-commands|aliases] for use with --all
Add the ability to only emit git's own usage information under
--all. This also allows us to extend the "test_section_spacing" tests
added in a preceding commit to test "git help --all"
output.
Previously we could not do that, as the tests might find a git-*
command in the "$PATH", which would make the output differ from one
setup to another.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'help.h')
-rw-r--r-- | help.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ static inline void mput_char(char c, unsigned int num) } void list_common_cmds_help(void); -void list_all_cmds_help(void); +void list_all_cmds_help(int show_external_commands, int show_aliases); void list_guides_help(void); void list_all_main_cmds(struct string_list *list); |