Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
情况:我们有几个已合并的 github 拉取请求,其中包含需要回滚的代码。穿插在这些合并中的是其他需要保留的内容。我知道我们可以回滚到第一次糟糕的合并和之后的樱桃选择更改之前,但我希望我们可以避免这种麻烦。是否可以基于两个错误的拉取请求创建某种反向补丁并将这些补丁应用到新分支,以便我们可以封装错误的更改并在问题修复后恢复它们?
可以用 反转补丁git revert。
git revert
另请参阅在 Git 中重新执行还原合并。