可能的重复: “树枝”、“标签”和“树干”到底是什么意思?

Subversion中的主干、分支和标记是什么?使用它们的最佳实践是什么?

我可以在Visual Studio 2008中使用哪些工具进行Subversion ?


当前回答

David Schmitt的回答很好地总结了这一点,但我认为需要注意的是,对于SVN来说,术语“分支”、“标签”和“主干”没有任何意义。这些术语是纯语义的,仅影响作为系统用户的我们对待这些目录的方式。人们可以很容易地将它们命名为“主”、“测试”和“发布”。只要使用系统的每个人都理解如何正确使用每个部分,那么它们被称为什么并不重要。

其他回答

开始学习Subversion的一个好地方是http://svnbook.red-bean.com/。

就Visual Studio工具而言,我喜欢AnkhSVN,但我还没有尝试过VisualSVN插件。

VisualSVN确实依赖于TortoiseSVN,但TortoiseSVN也是Ankh的一个很好的补充。

主干被认为是主代码库,是主干的分支分支。比如,如果你想实现一个新特性,但又不想影响主干,你可以创建一个分支。

TortoiseSVN有良好的文档,和一个伟大的差异工具。

我使用Visual studio,我使用VisualSVN和TortoiseSVN。

要在Visual Studio 2008中使用Subversion,请安装TortoiseSVN和AnkhSVN。

TortoiseSVN is a really easy to use Revision control / version control / source control software for Windows. Since it's not an integration for a specific IDE you can use it with whatever development tools you like. TortoiseSVN is free to use. You don't need to get a loan or pay a full years salary to use it. AnkhSVN is a Subversion SourceControl Provider for Visual Studio. The software allows you to perform the most common version control operations directly from inside the Microsoft Visual Studio IDE. With AnkhSVN you no longer need to leave your IDE to perform tasks like viewing the status of your source code, updating your Subversion working copy and committing changes. You can even browse your repository and you can plug-in your favorite diff tool.

如果您有一个开发人员团队,可以使用一个很棒的免费实用程序SVN Monitor。它充当树的心跳,告诉您何时有更新、可能的冲突等。但这对于独立开发者来说并不是很有用。

“主干”、“分支”和“标记”目录是Subversion中的约定。Subversion不要求您拥有这些目录,也不要求为它们赋予特殊含义。然而,这种惯例是非常常见的,除非你有一个非常好的理由,否则你应该遵循惯例。其他读者提供的书籍链接描述了这种惯例以及如何使用它。