使用 Subclipse - 合并

发布于 2024-12-14 11:09:08 字数 306 浏览 4 评论 0原文

我创建了一个项目,并将其添加到主干的存储库中。我做了一些改变。我现在正在寻找添加新分支的正确方法。他希望我对应用程序的外观进行一些修改。然后,如果一切顺利,我想将这些项目合并成一个新版本。

怎么做,求指导,链接。

谢谢您并致以最诚挚的问候。

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:

image

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

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

发布评论

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

评论(3

诠释孤独 2024-12-21 11:09:08

在 Subclipse 图表子页面上 (http://subclipse.tigris.org/graph.html)它指出:

构建缓存时,它不会收集任何合并信息,并且当您打开图表时,您将看不到任何合并信息。但是,对于图表中的任何给定修订版,您可以选择它并选择“刷新修订版”选项。这将出去并获取该修订的合并信息,将其存储在缓存中,然后重新绘制图形。使用工具栏,您可以立即刷新图表上的所有修订,尽管该选项的性能并不总是很好。

因此,您应该手动刷新修订图才能看到“红色合并箭头”。单击“重新加载箭头”并选择“图形修订”。

修订图表工具栏

On Subclipse subpage for graphs (http://subclipse.tigris.org/graph.html) it states:

When the cache is built, it does not gather any merge information, and when you bring up a graph you will not see any merge information. However, for any given revision in the graph, you can select it and take the "Refresh revision" option. That will go out and get the merge information for that revision, store it in the cache, and re-draw the graph. Using the toolbar, you can refresh all of the revisions on the graph at once, although performance for that option is not always great either.

So you should manually refresh revision graph in order to see 'red merge arrows'. Click on "Reload arrows" and choose "Graph revisions".

Revision graph toolbar

叹倦 2024-12-21 11:09:08

首先,您将在主干上执行修订版 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 an svn 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 an svn commit to complete the merging of the branch to the trunk.

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