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.
我目前正在开发一个项目 git 用作版本控制。我目前在 0.27.0.i1 分支。而且我还有一些更改尚未提交给主分支。这些更改必须提交给源自 0.27.0.i1 的新 0.27.0.i2 分支。
如何存储 0.27.0.i1 中的更改并将隐藏的更改应用到 0.27.0.i2 分支。
做就是了
git stash git checkout 0.27.0.i2 git stash pop git commit -a
当您在目标分支中没有更改时,您可以简单地签出新分支。然后您的所有更改都将在新分支中。
当您在新分支中进行更改时,您无法签出另一个分支,但在您的情况下,我认为这不是问题。