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
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-28 23:18:03 +0300
committerJunio C Hamano <gitster@pobox.com>2021-07-28 23:18:03 +0300
commitfa8b225d864e00703c048d49ff523c3980d6a3b4 (patch)
treeeb1415636af0e158048435fc1d9141746df5d652 /t
parent268055bfdec5cc2228ade6f3ff7094632568c82a (diff)
parentca2d62b7879f4e1a28fcef349a82f56ce8a986b6 (diff)
Merge branch 'pb/dont-complete-aliased-options'
The completion support used to offer alternate spelling of options that exist only for compatibility, which has been corrected. * pb/dont-complete-aliased-options: parse-options: don't complete option aliases by default
Diffstat (limited to 't')
-rwxr-xr-xt/t9902-completion.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index cb057ef161..11573936d5 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh
@@ -2404,6 +2404,19 @@ test_expect_success 'sourcing the completion script clears cached --options' '
verbose test -z "$__gitcomp_builtin_notes_edit"
'
+test_expect_success 'option aliases are not shown by default' '
+ test_completion "git clone --recurs" "--recurse-submodules "
+'
+
+test_expect_success 'option aliases are shown with GIT_COMPLETION_SHOW_ALL' '
+ . "$GIT_BUILD_DIR/contrib/completion/git-completion.bash" &&
+ GIT_COMPLETION_SHOW_ALL=1 && export GIT_COMPLETION_SHOW_ALL &&
+ test_completion "git clone --recurs" <<-\EOF
+ --recurse-submodules Z
+ --recursive Z
+ EOF
+'
+
test_expect_success '__git_complete' '
unset -f __git_wrap__git_main &&