[PATCH v3 3/5] completion: add missing general options
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:53:35
Subsystem:
the rest · Maintainer:
Linus Torvalds
And add relevant tests. Signed-off-by: Felipe Contreras <redacted> --- contrib/completion/git-completion.bash | 2 ++ t/t9902-completion.sh | 16 ++++++++++++++++ 2 files changed, 18 insertions(+)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 9d36bb7..6a8cf9f 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash@@ -2640,8 +2640,10 @@ _git () --version --exec-path --html-path + --info-path --work-tree= --namespace= + --no-replace-objects --help " ;;
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index 7bd37f5..f24c968 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh@@ -95,8 +95,10 @@ test_expect_success 'double dash "git" itself' ' --version Z --exec-path Z --html-path Z + --info-path Z --work-tree= --namespace= + --no-replace-objects Z --help Z EOF test_completion "git --"
@@ -117,4 +119,18 @@ test_expect_success 'double dash "git checkout"' ' test_completion "git checkout --" ' +test_expect_success 'general options' ' + test_completion "git --ver" "--version " && + test_completion "git --hel" "--help " && + test_completion "git --exe" "--exec-path " && + test_completion "git --htm" "--html-path " && + test_completion "git --pag" "--paginate " && + test_completion "git --no-p" "--no-pager " && + test_completion "git --git" "--git-dir=" && + test_completion "git --wor" "--work-tree=" && + test_completion "git --nam" "--namespace=" && + test_completion "git --bar" "--bare " && + test_completion "git --inf" "--info-path " && + test_completion "git --no-r" "--no-replace-objects " +' test_done
--
1.7.10.1.g1f19b8.dirty