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 文档建议不要对已公开推送的提交进行变基。
我们有两个分支master和dev. 我已经对一个master我想要接受的修补程序进行了更改dev,dev它本身是相当领先的master。
master
dev
在这种情况下,修补程序是针对 2 个文件,并且每个文件只有 1 行更改。
什么是最简单的方法可以将它带到dev分支而不会使事情变得非常混乱?
如果修补程序是唯一master不在其中的东西,dev您可以简单地合并master到您的dev分支中。
否则,您可能只想将修补程序提交到您的dev分支中。假设修补程序是master您可以执行的最新提交:
git checkout dev git cherry-pick master