aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-help.txt
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-02-21 20:38:51 +0100
committerJunio C Hamano <gitster@pobox.com>2022-02-23 13:41:37 -0800
commit1ce590133b545aa735683f46003d12df624d67af (patch)
treecc0a4a943280fe23bf58b5914b474a9048b17663 /Documentation/git-help.txt
parent503cddacb63b9a37d063de5b11ac188de822e06f (diff)
downloadgit-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 'Documentation/git-help.txt')
-rw-r--r--Documentation/git-help.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt
index d07590c8ff..239c68db45 100644
--- a/Documentation/git-help.txt
+++ b/Documentation/git-help.txt
@@ -8,7 +8,7 @@ git-help - Display help information about Git
SYNOPSIS
--------
[verse]
-'git help' [-a|--all] [--[no-]verbose]
+'git help' [-a|--all] [--[no-]verbose] [--[no-]external-commands] [--[no-]aliases]
'git help' [[-i|--info] [-m|--man] [-w|--web]] [<command>|<guide>]
'git help' [-g|--guides]
'git help' [-c|--config]
@@ -48,6 +48,14 @@ OPTIONS
--all::
Prints all the available commands on the standard output.
+--no-external-commands::
+ When used with `--all`, exclude the listing of external "git-*"
+ commands found in the `$PATH`.
+
+--no-aliases::
+ When used with `--all`, exclude the listing of configured
+ aliases.
+
--verbose::
When used with `--all` print description for all recognized
commands. This is the default.