Subversion 将未提交的更改提交到新分支

发布于 2024-11-08 03:58:54 字数 89 浏览 0 评论 0原文

我应该从一个分支开始,但决定在主干上工作,现在我想创建一个分支并将我未提交的更改提交到该分支而不是主干。

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云之铃。 2024-11-15 03:58:54

您可以使用 switch 命令将工作副本切换到分支,然后可以将所做的更改提交到分支。但不要混合主干/分支的更改。
在工作副本中执行以下操作:

svn switch URL/branches/BRANCHNAME

更改后进行提交。

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:

svn switch URL/branches/BRANCHNAME

and after changing do the commit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文