Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-09-22 01:40:35 +0300
committerJunio C Hamano <gitster@pobox.com>2021-09-23 20:30:43 +0300
commit0a5940fbe7e453652266e765509a576e4df333c7 (patch)
tree081787ae01a986a0a397429907f66984b6fb5ac6 /t/t0012-help.sh
parent1ed4bef6b438d25ce605f6bdefb4c98569dad137 (diff)
help: correct logic error in combining --all and --guides
The --all and --guides commands could be combined, which wouldn't have any impact on the output except for: git help --all --guides --no-verbose Listing the guide alongside that output was clearly not intended, so let's error out here. See 002b726a400 (builtin/help.c: add list_common_guides_help() function, 2013-04-02) for the initial implementation. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0012-help.sh')
-rwxr-xr-xt/t0012-help.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/t0012-help.sh b/t/t0012-help.sh
index b4ed6229ed..69e385d3b6 100755
--- a/t/t0012-help.sh
+++ b/t/t0012-help.sh
@@ -36,7 +36,12 @@ test_expect_success 'basic help commands' '
test_expect_success 'invalid usage' '
test_expect_code 129 git help -g add &&
- test_expect_code 129 git help -a -c
+ test_expect_code 129 git help -a -c &&
+
+ test_expect_code 129 git help -g add &&
+ test_expect_code 129 git help -a -g &&
+
+ test_expect_code 129 git help -g -c
'
test_expect_success "works for commands and guides by default" '