diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2018-04-25 14:29:38 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-04-26 12:28:43 +0900 |
| commit | 1131ec98189e993dcc48043c4f8e8b0128f52055 (patch) | |
| tree | d22836ec39f637e12847dd05172c82865d510808 /contrib/completion/git-completion.bash | |
| parent | 7ccdf65b63f2f4a5e751d70b9788af3c9e16b6ab (diff) | |
| download | git-1131ec98189e993dcc48043c4f8e8b0128f52055.tar.xz | |
pull: accept --rebase=merges to recreate the branch topology
Similar to the `preserve` mode simply passing the `--preserve-merges`
option to the `rebase` command, the `merges` mode simply passes the
`--rebase-merges` option.
This will allow users to conveniently rebase non-trivial commit
topologies when pulling new commits, without flattening them.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion/git-completion.bash')
| -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 e646900409..7fe2e213d1 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2115,7 +2115,7 @@ _git_config () return ;; branch.*.rebase) - __gitcomp "false true preserve interactive" + __gitcomp "false true merges preserve interactive" return ;; remote.pushdefault) |
