From: Julia Evans Date: Tue, 23 Sep 2025 19:45:02 +0000 (+0000) Subject: doc: git-pull: clarify how to exit a conflicted merge X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1ddc8ca19235c890df89303401878f1050ce7b5;p=thirdparty%2Fgit.git doc: git-pull: clarify how to exit a conflicted merge From user feedback: - One user is confused about why `git reset --merge` (why not just `git reset`?). Handle this by mentioning `git merge --abort` and `git reset --abort` instead, which have a more obvious meaning. - 2 users want to know what "In older versions of Git" means exactly (in versions older than 1.7.0). Handle this by removing the warning since it was added 15 years ago (in 3f8fc184c0e2c) Signed-off-by: Julia Evans Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-pull.adoc b/Documentation/git-pull.adoc index 91903b0a94..eec05ab6c7 100644 --- a/Documentation/git-pull.adoc +++ b/Documentation/git-pull.adoc @@ -30,15 +30,9 @@ branch. There are 4 main options for integrating the remote branch: You can also set the configuration options `pull.rebase`, `pull.squash`, or `pull.ff` with your preferred behaviour. -In Git 1.7.0 or later, to cancel a conflicting merge, use -`git reset --merge`. *Warning*: In older versions of Git, running 'git pull' -with uncommitted changes is discouraged: while possible, it leaves you -in a state that may be hard to back out of in the case of a conflict. - -If any of the remote changes overlap with local uncommitted changes, -the merge will be automatically canceled and the work tree untouched. -It is generally best to get any local changes in working order before -pulling or stash them away with linkgit:git-stash[1]. +If there's a merge conflict during the merge or rebase that you don't +want to handle, you can safely abort it with `git merge --abort` or `git +--rebase abort`. OPTIONS -------