diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-05-22 12:41:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-22 12:41:42 -0700 |
commit | 823ac2b6330859bd145e6424663a98d85d455bf9 (patch) | |
tree | b511f7f8c0c5dbb491fb725775e497d1f6756485 | |
parent | Merge branch 'dl/branch-error-message' (diff) | |
parent | completion: remove credential helpers from porcelain commands (diff) | |
download | tgif-823ac2b6330859bd145e6424663a98d85d455bf9.tar.xz |
Merge branch 'sg/completion-omit-credential-helpers'
The Git subcommand completion (in contrib/) listed credential
helpers among candidates, which is not something the end user would
invoke interatively.
* sg/completion-omit-credential-helpers:
completion: remove credential helpers from porcelain commands
-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 b28a14e8ca..a430d9f493 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;; |