将本地更改移至分支

发布于 2024-12-28 18:45:34 字数 91 浏览 0 评论 0原文

我今天一直在主干中工作,现在我需要对主干中所做的一些更改并将它们移到分支中。我还没有进行任何这些更改。但我需要创建一个分支,然后将这些文件放入该分支。我不知道该怎么做。

I've been working in the trunk today and now I am needing to take some changes I've made out of the trunk and move them into a branch. I haven't committed any of these changes yet. But I need to create a branch then get these files into that branch. I have no idea how to go about this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

给妤﹃绝世温柔 2025-01-04 18:45:34

向存储库添加一个新分支:

 svn copy $base/trunk $base/branches/my-branch

然后将您的 WC 切换到它:

 svn switch $base/branches/my-branch

Add a new branch to the repository:

 svn copy $base/trunk $base/branches/my-branch

and then switch your WC to it:

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