When's the best time to create the trunk, branches and tags directories?

I have executed svnadmin create --fs-type fsfs /home/firefli/web/projects/subversion and have myself a blank repo. If I create, say, the trunk directory using svn mkdir file:///home/firefli/web/projects/subversion/trunk it works fine but I go to revision 1.

Not that going to revision 1 is a problem, I'm just sure I've done it differently before and I'm looking for the best practice.

Thanks

link|improve this question

75% accept rate
feedback

2 Answers

up vote 7 down vote accepted

When we create SVN repo's at work we svnadmin create and then svn import a skeleton folder of the 3 directories and commit that at once pushing it to revision 1 (We have a bash script automate all of this). I don't think there's a better practice than to just have the initial commit?

link|improve this answer
That's pretty much the same as we do - all automated with a script. – hmallett Feb 21 '10 at 19:36
feedback

On a fresh checkout of a new repository, I create and add the three directories - tags, trunk, and branches. I commit those three; the repo is on rev. 1, and I switch to trunk and get to work. Not much to it, really.

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.