将主干合并到分叉分支

发布于 2024-08-01 18:20:11 字数 70 浏览 4 评论 0原文

希望这是有道理的:在 subversion 中,如果我对主干进行分支,然后分叉该分支,我可以将主干中的更改合并到分叉分支中吗?

Hopefully this makes sense: In subversion if I branch a trunk and then fork the branch can I merge changes from the trunk into the forked branch?

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

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

发布评论

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

评论(1

半仙 2024-08-08 18:20:11

这实际上与从主干合并到“常规”分支没有太大区别。 唯一的区别是,分枝的枝条将扎根于树枝而不是主干。 如果您使用具有合并跟踪功能的 Subversion 1.6,您可以执行以下操作:

$ svn copy ^/trunk ^/branches/mybranch
... hack away in trunk ...
$ svn copy ^/branches/mybranch ^/branches/myforkedbranch
... hack away in trunk

# Merge from trunk to myforkedbranch
$ cd myforkedbranch-workingcopy
$ svn merge ^/trunk .

This is really not very much different from merging from trunk into a "regular" branch. The only difference is that the branched branch will be rooted in a branch instead of trunk. If you're using Subversion 1.6 with merge tracking, you can do:

$ svn copy ^/trunk ^/branches/mybranch
... hack away in trunk ...
$ svn copy ^/branches/mybranch ^/branches/myforkedbranch
... hack away in trunk

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