diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-11-25 18:43:54 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-25 18:43:54 -0800 |
commit | 09b61b5e8ce9181d0ea499d6e81b038c9c34871c (patch) | |
tree | 3a2c913ca81a40bc075e429d9f57d8a229523a74 /contrib | |
parent | Sync with 1.8.0.1 (diff) | |
parent | completion: remove 'help' duplicate from porcelain commands (diff) | |
download | tgif-09b61b5e8ce9181d0ea499d6e81b038c9c34871c.tar.xz |
Merge branch 'sg/complete-help-undup'
* sg/complete-help-undup:
completion: remove 'help' duplicate from porcelain commands
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 85ae4191e5..0960acc586 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -585,7 +585,7 @@ __git_list_porcelain_commands () { local i IFS=" "$'\n' __git_compute_all_commands - for i in "help" $__git_all_commands + for i in $__git_all_commands do case $i in *--*) : helper pattern;; |