Skip to content

Commit

Permalink
Merge branch 'sg/complete-decorate-full-not-long' into maint
Browse files Browse the repository at this point in the history
The completion for "log --decorate=" parameter value was incorrect.

* sg/complete-decorate-full-not-long:
  completion: fix and update 'git log --decorate=' options
  • Loading branch information
Junio C Hamano committed May 26, 2015
2 parents a2e5c79 + af16bda commit 23903b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ _git_log ()
return
;;
--decorate=*)
__gitcomp "long short" "" "${cur##--decorate=}"
__gitcomp "full short no" "" "${cur##--decorate=}"
return
;;
--*)
Expand Down

0 comments on commit 23903b9

Please sign in to comment.