Subversion 将未提交的更改提交到新分支
我应该从一个分支开始,但决定在主干上工作,现在我想创建一个分支并将我未提交的更改提交到该分支而不是主干。
在svn中有没有简单的方法可以做到这一点?
I should have taken a branch to start with but decided to work on trunk instead, and now I want to create a branch and commit my uncommitted changes to that branch instead of trunk.
Is there an easy way to do that in svn?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 switch 命令将工作副本切换到分支,然后可以将所做的更改提交到分支。但不要混合主干/分支的更改。
在工作副本中执行以下操作:
更改后进行提交。
You can use the switch command to switch your working copy the branch and afterwards you can commit the changes you made to the branch. But don't mix changes for trunk/branches.
Do the following in your working copy:
and after changing do the commit.