使用 Subclipse - 合并
我创建了一个项目,并将其添加到主干的存储库中。我做了一些改变。我现在正在寻找添加新分支的正确方法。他希望我对应用程序的外观进行一些修改。然后,如果一切顺利,我想将这些项目合并成一个新版本。
怎么做,求指导,链接。
谢谢您并致以最诚挚的问候。
PS:确切地说,我的意思是,如果您按照我认为可以的方式执行所有操作,那么图表上不会显示从 5 到 6 的调用:
I created a project, I added it to the repository to the trunk. I made a few changes. I'm looking for the correct way to add a new branch now. He wanted me to work a bit over the appearance of the application. Then, if everything comes out, I wanted to combine the projects into a single new version.
How to do it, ask for directions, links.
Thank you and best regards.
PS: Exactly, I mean that if you do everything as I think it is ok it shows me no call from 5 to 6 on the diagram:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Subclipse 图表子页面上 (http://subclipse.tigris.org/graph.html)它指出:
因此,您应该手动刷新修订图才能看到“红色合并箭头”。单击“重新加载箭头”并选择“图形修订”。
On Subclipse subpage for graphs (http://subclipse.tigris.org/graph.html) it states:
So you should manually refresh revision graph in order to see 'red merge arrows'. Click on "Reload arrows" and choose "Graph revisions".
关于在 Subclipse 中合并和分支。
Instructions on merging and branching in Subclipse.
首先,您将在主干上执行修订版 1 的
svn cp
到分支目录。然后,svn switch
到分支并处理更改。一旦获得批准,您就可以将所有内容提交到分支,svn switch
返回到主干,然后将分支执行svn merge
返回到主干。 SVN 完成合并后,您将测试主干上的代码库,以确保其正常运行并且所有功能已正确合并,并执行svn commit
来完成分支到 SVN 的合并。树干。First, you would do an
svn cp
of revision one on the trunk to the branch directory. Then,svn switch
to the branch and work on the changes. Once they are approved, you would commit everything to the branch,svn switch
back to the trunk, and then perform ansvn merge
of the branch back onto the trunk. Once SVN has completed the merge, you would test the codebase on the trunk to insure it is functioning correctly and all the capability has been properly merged and do ansvn commit
to complete the merging of the branch to the trunk.