git merge 后如何撤销操作
时间: 2023-10-31 18:49:30 浏览: 98
Git的merge和rebase你真的了解吗?
你可以使用 git reset 命令来撤销 git merge 操作。如果你想撤销 merge 并且丢弃所有的改动,可以使用 git reset --hard <commit_hash>,其中 <commit_hash> 是先前的合并操作之前的 commit。如果你想保留在合并操作之后的改动,可以使用 git reset <commit_hash>,然后使用 git stash 命令来保存更改。
阅读全文