diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2015-05-05 18:33:13 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-06 15:17:05 -0700 |
commit | a074aa90a89ea8c4d194121020f6bbf9396d2990 (patch) | |
tree | e64163e08ef35a2c665f5ee3de220b3846fdc46b /contrib/completion | |
parent | Merge branch 'maint-1.9' into maint-2.0 (diff) | |
download | tgif-a074aa90a89ea8c4d194121020f6bbf9396d2990.tar.xz |
completion: remove credential helpers from porcelain commands
Don't offer the "main" 'git credential' command or any of the credential
helpers from contrib/credential/ when completing git commands.
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rw-r--r-- | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 019026efcb..af782129ae 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -665,8 +665,8 @@ __git_list_porcelain_commands () checkout-index) : plumbing;; commit-tree) : plumbing;; count-objects) : infrequent;; - credential-cache) : credentials helper;; - credential-store) : credentials helper;; + credential) : credentials;; + credential-*) : credentials helper;; cvsexportcommit) : export;; cvsimport) : import;; cvsserver) : daemon;; |