vote up 1 vote down star
1

When having several related projects (identifiable, stand alone applications, that share libraries), how do you prepare your SVN server directory structure? By branch > project? By project > branch? Something entirely different? Or is it better to have one SVN server for every project? (Take into account that some projects are intimately related)

flag

75% accept rate
3  
What's a proyect? – Andrew Garrison Jul 16 at 16:04
There doesn't seem to have emerged any conensus, with server / projects / branches being the prefered organization so far... – voyager Jul 16 at 17:16
And the recommended option is using different SVN servers for each project and using externals. – voyager Jul 16 at 17:18

9 Answers

vote up 11 vote down check

The standard convention is

  • project1
    • branches
    • tags
    • trunk
  • project2
    • branches
    • tags
    • trunk

inside a single repo. Since that's the most common convention, some tools just expect your projects to be laid out like that.

Which projects belong in which repo is more of a judgement call. Personally, I'd start with one repo for all projects managed by the same group, e.g., team, division, or company.

link|flag
As I'm accepting this answer, I guess I should add the link with information to externals svnbook.red-bean.com/en/1.0/ch07s03.html as it's useful for having coordinated different servers. (Taken from stackoverflow.com/questions/1138628/… ) – voyager Jul 26 at 17:18
vote up 1 vote down

As someone who maintains large svn repos, let me tell you, DO NOT use a unified trunk. It will make all operations much, much slower. Beyond this, extracting a single project out of a larger repo is not only tedious and touchy, but will result in a space waste when you do eventually want to peel away even one project.

Use separate repos for each project, with a trunk and tags directories under the repos, and have developers needing to tie to other projects use externals, the way they were designed.

Lazy is not an adequate substitute for organized.

link|flag
3  
Are you telling us that the Apache people at svn.apache.org/repos/asf are a bunch of fools? – IlDan Jul 16 at 17:04
Did I say that? No. Stop being an ass. – Zenham Jul 17 at 22:21
vote up 2 vote down

I'd look into using externals . If you have many related projects that all use the same codebase, but you don't want to copy that codebase into each repository, set up an external link in each repository to point to the common codebase.

link|flag
vote up 2 vote down

This question gets a whole section in the SVN book. I would recommend starting there, and asking about anything it doesn't make clear or is specific to your project.

link|flag
vote up 7 vote down

Check out the subversion book, which offers a section on Recommended Repository Layout

link|flag
vote up 1 vote down

For projects that are intimately related, I recommend:

root > branch > project

This way it's possible to check out a single branch and get all of the code that's current in that branch.

link|flag
vote up 1 vote down
  • root / trunk / projectfolders

  • root / branches / projectfolders

That way someone can get all the mainline projects without getting any branches if so desired.

link|flag
vote up 0 vote down

We've setup repositories for each project, thus each can have their own branches/tags etc.

Also, for interdependent projects, you can setup linked repositories so that the files can be shared. This has worked well for us so far and has proven to be quite flexible.

link|flag
vote up 0 vote down

I use a folder for each project, then branches within each folder. This way if a different team is working each project, they don't need to see the whole tree, just their branch.

link|flag

Your Answer

Get an OpenID
or

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