diff options
author | Chris Packham <judge.packham@gmail.com> | 2016-12-14 21:37:56 +1300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-14 10:02:04 -0800 |
commit | c261a87e704679203510d48ff4db7bc7006b8a5a (patch) | |
tree | 4ca1d22b971a101e31cdd94bdcb9e9cbd3bfe75f | |
parent | merge: add '--continue' option as a synonym for 'git commit' (diff) | |
download | tgif-c261a87e704679203510d48ff4db7bc7006b8a5a.tar.xz |
completion: add --continue option for merge
Add 'git merge --continue' option when completing.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 21016bf8df..1f97ffae19 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1552,7 +1552,7 @@ _git_merge () case "$cur" in --*) __gitcomp "$__git_merge_options - --rerere-autoupdate --no-rerere-autoupdate --abort" + --rerere-autoupdate --no-rerere-autoupdate --abort --continue" return esac __gitcomp_nl "$(__git_refs)" |