我在mybranch1上。Mybranch2是从mybranch1分叉出来的,在Mybranch2中做了一些改变。
然后,在mybranch1上,我做了git merge——no-commit mybranch2 这说明合并过程中存在冲突。
现在我想放弃所有(合并命令),以便mybranch1恢复到以前的状态。 我不知道该怎么做。
我在mybranch1上。Mybranch2是从mybranch1分叉出来的,在Mybranch2中做了一些改变。
然后,在mybranch1上,我做了git merge——no-commit mybranch2 这说明合并过程中存在冲突。
现在我想放弃所有(合并命令),以便mybranch1恢复到以前的状态。 我不知道该怎么做。
当前回答
假设您正在使用最新的git,
git merge --abort
其他回答
假设您正在使用最新的git,
git merge --abort
因为之前没人提到过,如果你得到这个错误
fatal: Could not reset index file to revision 'HEAD'.
当尝试上述方法时,你可以尝试添加文件(暂存它们),然后不只是提交git stash,你可以使用-m标志并给它一个标记,这样你就知道如果你碰巧需要恢复最后的状态,你可以用git stash列表找到stash。
对我来说,git reset -merge和git merge -abort失败与上述错误。
Sourcetree
如果你没有提交你的合并,那么只需双击另一个分支(=checkout),当sourcetree询问你关于丢弃所有更改时,然后同意
您可以做两件事,首先通过命令撤消合并
git merge --abort
or
您可以通过命令暂时转到以前的提交状态
git checkout 0d1d7fc32
如果使用最新的Git,
git merge --abort
否则,这将在较旧的git版本中完成工作
git reset --merge
or
git reset --hard