Help with SVN Setup - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:46:21Zhttp://stackoverflow.com/feeds/question/957956http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/957956/help-with-svn-setup1Help with SVN Setup Nate Bross2009-06-05T20:25:05Z2009-12-07T16:12:24Z
<p>I am setting up VisualSVN. It comes with a "Repositories" repo. My question is pretty simple I hope, do I create a single repository under the root and then add a new folder for each project I want to manage? or do I create a new repository under the root "Repositores" for each new project?</p>
http://stackoverflow.com/questions/957956/help-with-svn-setup/957980#9579801Answer by J.W. for Help with SVN Setup J.W.2009-06-05T20:29:40Z2009-06-05T20:29:40Z<p>If your projects are related, then I would create a single repository under the root and then add a new folder for each project I want to manage. A single repository could contain a project group which contains different projects. </p>
<p>If your projects are unrelated, then create a new repository for each project. Then each project will belong to different project group.</p>
http://stackoverflow.com/questions/957956/help-with-svn-setup/958012#9580122Answer by Robert for Help with SVN Setup Robert2009-06-05T20:37:22Z2009-06-05T20:37:22Z<p>I have all of my projects in a single repository. Each project gets a folder with a trunk, tags, and branches subfolder. One drawback to this is that any commit increments the revision of the repository, but I don't show the revision number anywhere in my code.</p>
http://stackoverflow.com/questions/957956/help-with-svn-setup/958015#9580151Answer by William Leara for Help with SVN Setup William Leara2009-06-05T20:38:22Z2009-06-05T20:38:22Z<p>Some things to consider:</p>
<ul>
<li><p>Chapter 5 of the SVN Book delves into this question:<br>
<a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.reposadmin.projects.chooselayout" rel="nofollow">http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.reposadmin.projects.chooselayout</a></p></li>
<li><p>You cannot perform svn copy/svn move operations between repositories, but you can between directories.</p></li>
<li><p>It's more of an art than a science, and it comes down to how much source code the projects will be sharing.</p></li>
</ul>