Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Mercurial. I'm used to use subversion. There was a habit of using trunk as the main folder for an project.

When I create a new repository in Mercurial, should I name the default branch as Trunk ?

share|improve this question
possible duplicate of folder structure in a mercurial repo? – richq Oct 8 '11 at 10:28

3 Answers

up vote 8 down vote accepted

Using copied directories for tags and branches are a serious design flaw in SVN, regardless what the manuals say. It introduces many problems, of which the most serious one is the fact that the whole tagging vs. branching model relies only on convention, but there is really nothing preventing anyone from branching in the "wrong" directory.

The second big flaw with the approach is that it encourages giant project structures, since people want to keep their single {trunk,tags,branches} at top level. Now one can happily go and copy (~branch) of only one sub-directory or even file, which also creates a potential big mess.

So don't get too tied up with the SVN way to do things, but instead learn and embrace the "right" way to do things, as in Hg or Git. Forget about trunks and branches directories, and set up your project structure in some sane way.

share|improve this answer
1  
Wish I could do +10 on this answer. Using directories as metadata is flawed and just wrong. – Paul Nathan Jul 22 '10 at 20:08
And how does the sane way look like ? :-) – user137348 Jul 22 '10 at 20:47
Basically anything that works for your project or software. I personally do java with maven, and we use the maven default structure. The point is, one shouldn't have to worry whether creating a directory named tags somewhere will cause confusion. That's what SVN does. And to add to my comments above. The biggest flaw with SVN is really that it's taught half a generation of coders to think trunk and branches folders are actually the correct way to do things. – Kai Inkinen Jul 24 '10 at 14:50

I have never found it needed.

share|improve this answer

Seems to be answered in detail here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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