The repository design that I have setup at the moment is the standard approach:
Application1
trunk
DatabaseScripts
CreateScripts
CreateTable1.SQL
CreateTable2.SQL
StoredProcs
StoredProc1.SQL
StoredProc2.SQL
Solutions
MainSolution.sln
Project1
Project1.csproj
Project1Class1.cs
Project2
Project2.csproj
Project2Class1.cs
tags
1.0.0
1.0.1
branches
developer1
developer2
and repeat for each Application. This has served me well in the past when working on very large code bases.
However this company is quite small, at the moment there are about 8 apps, and each is reasonably small. There are only a few developers so rarely do we need to branch/tag.
The only problem that I have with the current setup is that if someone would like to check out the source code for all of our apps, the only way to do it is to either check out each individual app's trunk, one at a time, or check out everything and then delete the branches and tags.
So I was thinking about the following structure:
trunk
Application1
DatabaseScripts
CreateScripts
StoredProcs
Solutions
MainSolution.sln
Application2
DatabaseScripts
CreateScripts
StoredProcs
Solutions
MainSolution.sln
tags
Application1
1.0.0
1.0.1
Application2
branches
Application1
developer1
developer2
Application2
I notice that the SVN book has mention of this pattern, which they call "projects-as-branch-siblings": http://svnbook.red-bean.com/nightly/en/svn.reposadmin.planning.html#svn.reposadmin.projects.chooselayout
Can anyone point out any deficiencies in this design other than those stated in the book?
svn:externals, so you don't get the branches and tags when checking out everything... – Michael Berkowski Mar 19 '12 at 1:57