如何针对这种情况制作/应用差异补丁?
我有一个项目,例如 WORDPRESS。 我正在使用SVN。
我有以下副本:
A. 来自 wordpress.org 的 WP2.6
B. WP2.6,我修改了一些核心文件(添加/删除/更改一些文件的代码)
C. 来自 wordpress.org 的 WP2.7
我想更新版本A 到 C 并保留版本 B 的更改。
我的一些更改可能是这样的:
版本 A 代码:
123 123
版本 B 代码:
123 x 123
版本 C 代码:
123 123 123
预期的最终版本:
123 x 123 123
如何为该项目制作/应用补丁? 如果我有 100 多个不同的文件,任何更快/更简单的方法
也许我的想法是错误的。 请建议改正。 谢谢。
I have a project, for example WORDPRESS. and I am use SVN.
I have following copies:
A. WP2.6 from wordpress.org
B. WP2.6, I modify some core files (add/del/change some files' code)
C. WP2.7 from wordpress.org
I would like update Version A to C and keep the changes of version B.
some of my changes maybe like that:
Version A code:
123 123
Version B code:
123 x 123
Version C code:
123 123 123
expected final version:
123 x 123 123
How can I make/apply patch to this project ? any faster/easier way if I have 100+ different files
maybe I thinking in wrong way. please suggest to make it right.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(简单的答案):没有全自动的方法来做到这一点 - 您将需要分支和合并,合并意味着您必须查看您的修改并测试它们。
将 svn rm 和 svn mv 删除并
重命名文件,并提交
trunk
回到后备箱(这是
大部分艰苦的工作将是)
为了说明通常无法自动解决的困难,请考虑以下内容:在您的示例中,希望-最终版本可以是以下之一:
(Simplistic Answer): There's no fully automatic way to do this - you will need to branch and merge, and merging will mean you have to look at your modifications, and test them.
to svn rm and svn mv deleted and
renamed files, and commit to the
trunk
back into the trunk (this is where
most of thehard work will be)
To illustrate the sort of difficulty that can't normally be solved automatically, consider this: in your example, the hoped-for final version could be either of these: