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
This commit is contained in:
Junio C Hamano 2015-05-26 13:49:22 -07:00
commit 23903b9e29

View file

@ -1448,7 +1448,7 @@ _git_log ()
return
;;
--decorate=*)
__gitcomp "long short" "" "${cur##--decorate=}"
__gitcomp "full short no" "" "${cur##--decorate=}"
return
;;
--*)