diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-06-13 13:19:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-06-13 13:19:41 -0700 |
commit | c4a38d161cbd3308825d7871d0f84f769aad04ab (patch) | |
tree | 7c2ea40857b1242030eff1a3cc4548941a152def /Documentation/git-merge.txt | |
parent | Merge branch 'ab/fail-prereqs-in-test' (diff) | |
parent | merge: add --quit (diff) | |
download | tgif-c4a38d161cbd3308825d7871d0f84f769aad04ab.tar.xz |
Merge branch 'nd/merge-quit'
"git merge" learned "--quit" option that cleans up the in-progress
merge while leaving the working tree and the index still in a mess.
* nd/merge-quit:
merge: add --quit
merge: remove drop_save() in favor of remove_merge_branch_state()
Diffstat (limited to 'Documentation/git-merge.txt')
-rw-r--r-- | Documentation/git-merge.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt index 6294dbc09d..c01cfa6595 100644 --- a/Documentation/git-merge.txt +++ b/Documentation/git-merge.txt @@ -100,6 +100,10 @@ commit or stash your changes before running 'git merge'. 'git merge --abort' is equivalent to 'git reset --merge' when `MERGE_HEAD` is present. +--quit:: + Forget about the current merge in progress. Leave the index + and the working tree as-is. + --continue:: After a 'git merge' stops due to conflicts you can conclude the merge by running 'git merge --continue' (see "HOW TO RESOLVE |