up vote 62 down vote favorite
23
share [g+] share [fb]

What is a trunk, branch and tag in subversion and what are the best practices to use them.

What tools I can use for subversion in Visual Studio 2008?

link|improve this question

73% accept rate
4  
Duplicate of stackoverflow.com/questions/16142/… – elhoim Oct 28 '09 at 13:26
... combined with: stackoverflow.com/questions/453481/… – Jørn Schou-Rode Mar 17 '10 at 8:46
feedback

11 Answers

up vote 90 down vote accepted

The trunk is the main line of development in a SVN repository.

A branch is a side-line of development created to make larger, experimental or disrupting work without annoying users of the trunk version. Also, branches can be used to create development lines for multiple versions of the same product, like having a place to backport bugfixes into a stable release.

Finally, tags are markers to highlight notable revisions in the history of the repository, usually things like "this was released as 1.0".

See the HTML version of "Version Control with Subversion", especially Chapter 4: Branching and Merging or buy it in paper (e.g. from amazon) for an in-depth discussion of the technical details.


I use TortoiseSVN but no Visual Studio integration. I keep the "Check for modifications" dialog open on the second monitor the whole time, so I can track which files I have touched. But see the "Best SVN Tools" question, for more recommendations.

link|improve this answer
3  
I guess ankh is the best for me. I can do almost everything from right within visual studio. Thanks!!! – Hemanshu Bhojak Apr 1 '09 at 4:56
feedback

The "trunk", "branches", and "tags" directories are conventions in Subversion. Subversion does not require you to have these directories nor assign special meaning to them. However, this convention is very common and, unless you have a really good reason, you should follow the convention. The book links that other readers have given describe the convention and how to use it.

link|improve this answer
feedback

Great place to start learning about subversion.. http://svnbook.red-bean.com/

As far as VS tools are concerned I like AnkhSVN but I haven't tried the VisualSVN plugin yet.

VisualSVN does rely on TortoiseSVN, but Tortoise is also a nice compliment to Ankh IMHO.

link|improve this answer
Where did you get the notion that Ankh relies on Tortoise? Afaik that is not the case, only for VisualSVN. – Joey Mar 30 '09 at 18:08
I don't know where I got that impression but I did think it was required. In either case I think it's nice to have Tortoise as a compliment, but thanks for making me look into it! – Quintin Robinson Mar 30 '09 at 18:13
I have ankh installed without tortoise. – Hemanshu Bhojak Mar 31 '09 at 4:56
feedback

The answer by David Schmitt sums things up very well, but I think it is important to note that, to SVN, the terms 'branch', 'tag', and 'trunk' don't mean anything. These terms are purely semantic and only affect the way we, as users of the system, treat those directories. One could easily name them 'main', 'test', and 'releases.'; As long as everyone using the system understands how to use each section properly, it really doesn't matter what they're called.

link|improve this answer
Yeah it's true. Subversion does not restrict you with such naming conventions. Its just a recommendation. Thanks for your answer, it helped. – Hemanshu Bhojak Apr 1 '09 at 4:54
feedback

To use subversion in VS2008, install tortoise and ankh.

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.

link|improve this answer
feedback

A trunk is considered your main code base, a branch offshoot of the trunk. Like, you create a branch if you want to impliment a new feature, but dont want to affect the main trunk.

Tortoise has good docs, and a great diff tool:

http://tortoisesvn.net/docs/release/TortoiseSVN_en/index.html

I use Visual studio, and I use VisualSvn and tortoise.

link|improve this answer
feedback

If you're new to subversion you may want to check out this post on SmashingMagazine.com, appropriately titled: Ultimate Round-Up for Version Control with SubVersion

It covers getting started with SubVersion with links to tutorials, reference materials, & book suggestions.

It covers tools (many are compatible windows) and it mentions AnkhSVN as a Visual Studio compatible plugin. The comments also mention VisualSVN as an alternative.

link|improve this answer
feedback

A fantastic free utility to use if you have a team of developers is SVN Monitor. It serves as a heartbeat for your tree, telling you when there are updates, possible conflicts, etc. It's not quite as useful for a solo developer though.

link|improve this answer
feedback

As for tools see:

This Post

link|improve this answer
feedback

Read http://svnbook.red-bean.com/nightly/en/svn-book.html for details of the recommended SVN directory layout.

link|improve this answer
feedback

A good book in Subversion: Pragmatic Version Control using Subversion, where is explained your question and gives a lot more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.