AnkhSVN 上架
到目前为止,我在使用 TFS 后才设置 AnkhSVN
AnkhSVN 中的什么相当于我在 TFS 中创建/使用的架子?
I just setup AnkhSVN after having used TFS till now
What in AnkhSVN is the equivalent of shelves that I would create/use in TFS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与 Subversion 中的搁置最接近的等效方法是创建一个分支并切换到它,提交“正在进行的工作”,然后切换回主干。稍后您可以从该“架子分支”合并以返回到原来的位置。在愤怒地使用 TFS 和 Subversion 之前,当我评估 TFS 和 Subversion 时,我原以为搁置会非常方便,而且是 Subversion 中我会怀念的功能 - 但我发现 Subversion 中的分支和切换非常简单,实际上比使用搁架更快反正。
The closest equivalent to shelving in Subversion is to create a branch and switch to it, commit your "work in progress", then switch back to the trunk. Later on you can merge from that "shelf branch" to get back to where you were. When evaluating TFS and Subversion before using either of them in anger I expected shelving to be really handy and an ability I'd miss in Subversion - but I've found that branching and switching is so simple in Subversion, it's actually quicker than using shelves anyway.
Subversion 目前没有相当于在 TFS 中搁置更改的功能。
最好的选择是为不同的功能创建多个并发分支,并在关联的功能/更改完成后将分支合并回主干。
以下博客文章提供了有关如何执行此操作的大量信息: http ://markphip.blogspot.com/2007/01/shelves-in-subversion.html
Subversion does not currently have a feature equivalent to shelving changes in TFS.
Your best bet would be to create multiple concurrent branches for different features and merge the branches back into your trunk when the associated feature/changes are complete.
The following blog post has a lot of information on how to do this: http://markphip.blogspot.com/2007/01/shelves-in-subversion.html