summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-12-27 08:11:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-27 08:11:41 (GMT)
commit05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5 (patch)
tree1312b104cc48f5c06c74fbf5d03ffa95e5a3f618 /contrib
parent1d73f8e86d7b4d95e0b7ce53eec2a5f8114722ac (diff)
parentc7d227df5bf7fe9d5df98a55cd637bfaf38685ea (diff)
downloadgit-05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5.zip
git-05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5.tar.gz
git-05f6e1be8cdae1ebedf3cf7b7a072a3b35f945b5.tar.bz2
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.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 78fe5b7..6721ff8 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)"