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.
如何在 MercurialEclipse 插件中将更改从一个分支拉到另一个分支?我找不到任何信息。我也看到了几个选项:变基和合并,但我害怕使用它们,因为我从事商业项目。
这不是一个真正的 MercurialEclipse 问题——简单的 mercurial 的答案也是有效的。简短的回答是使用合并。合并会将在另一个分支上所做的所有更改应用于自上次合并以来的当前分支(如果之前从未合并过,则从分支点开始)。
Rebase 删除源变更集,因此通常不适合将更改从一个命名分支应用到另一个。
第三种选择是使用移植。这使您可以选择特定的变更集以应用于当前分支。