diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-01-13 13:17:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-13 13:00:48 -0800 |
commit | 17c4ddbbaf5842ee6389f6a0f525c40d15152b55 (patch) | |
tree | 97573f3ea09c2d61032dd68444bbb6a8aad48ff7 /contrib | |
parent | b5496d484d244bc291db0973466b76e7f679cb9f (diff) | |
download | git-17c4ddbbaf5842ee6389f6a0f525c40d15152b55.tar.gz |
completion: add missing branch.*.rebase valuesjs/pull-rebase-i
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 6956807519..880a69a271 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1808,7 +1808,7 @@ _git_config () return ;; branch.*.rebase) - __gitcomp "false true" + __gitcomp "false true preserve interactive" return ;; remote.pushdefault) |