diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-12-27 00:11:41 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-27 00:11:41 -0800 |
commit | 05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5 (patch) | |
tree | 1312b104cc48f5c06c74fbf5d03ffa95e5a3f618 /contrib | |
parent | 1d73f8e86d7b4d95e0b7ce53eec2a5f8114722ac (diff) | |
parent | c7d227df5bf7fe9d5df98a55cd637bfaf38685ea (diff) | |
download | git-05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5.tar.gz git-05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5.tar.xz |
Merge branch 'cp/merge-continue'
"git merge --continue" has been added as a synonym to "git commit"
to conclude a merge that has stopped due to conflicts.
* cp/merge-continue:
merge: mark usage error strings for translation
merge: ensure '--abort' option takes no arguments
completion: add --continue option for merge
merge: add '--continue' option as a synonym for 'git commit'
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 78fe5b7f5..6721ff80f 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)" |