Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'sg/complete-decorate-full-not-long' into maint
author
Junio C Hamano
<gitster@pobox.com>
Tue, 26 May 2015 20:49:22 +0000
(13:49 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 26 May 2015 20:49:22 +0000
(13:49 -0700)
The completion for "log --decorate=" parameter value was incorrect.
* sg/complete-decorate-full-not-long:
completion: fix and update 'git log --decorate=' options
contrib/completion/git-completion.bash
patch
|
blob
|
history
raw
(from parent 1:
a2e5c79
)
diff --git
a/contrib/completion/git-completion.bash
b/contrib/completion/git-completion.bash
index 5944c824abe9aa4dee8b63b0e91a047125722b22..eae9dce590e0000eb93e441106ef6538c07e86cc 100644
(file)
--- a/
contrib/completion/git-completion.bash
+++ b/
contrib/completion/git-completion.bash
@@
-1448,7
+1448,7
@@
_git_log ()
return
;;
--decorate=*)
- __gitcomp "
long short
" "" "${cur##--decorate=}"
+ __gitcomp "
full short no
" "" "${cur##--decorate=}"
return
;;
--*)