From: Junio C Hamano Date: Tue, 26 May 2015 20:49:22 +0000 (-0700) Subject: Merge branch 'sg/complete-decorate-full-not-long' into maint X-Git-Tag: v2.4.2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/23903b9e290afeb6928955ee589799ee1a3c4c73?hp=a2e5c79c69ee6109b06efe9a483df5e6708432fe Merge branch 'sg/complete-decorate-full-not-long' into maint The completion for "log --decorate=" parameter value was incorrect. * sg/complete-decorate-full-not-long: completion: fix and update 'git log --decorate=' options --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 5944c824ab..eae9dce590 100644 --- 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 ;; --*)