I am getting ready to set up an SVN repository, and was wondering if anyone had a good example for a repo structure. I am currently thinking:
Development
.. Applications
.... App1
...... trunk
...... branches
...... tags
.. Database
.. Third Party
While this structure could probably hold everything we need, I would like to make it a bit more granulated. Any thoughts?
We started with a similar model, but found it to be a bit cumbersome. The main problem is that if you want to branch your codebase at a release, you have to go make branches for each component.
Instead, we've considered a scheme like the following:
I like having a separate repo entirely for 3rd-party stuff. Unless you plan to implement the full vendor-branching strategy from the red bean book, this will work well.