Best way to organize a subversion repository of many small projects - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:30:49Z http://stackoverflow.com/feeds/question/529207 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/529207/best-way-to-organize-a-subversion-repository-of-many-small-projects 2 Best way to organize a subversion repository of many small projects BrianH 2009-02-09T18:09:44Z 2009-02-09T18:45:51Z <p>To start out, I have looked at the following pages and don't quite have my answer: <a href="http://stackoverflow.com/questions/51217/how-would-you-organize-a-subversion-repository-for-in-house-software-projects">how-would-you-organize-a-subversion-repository-for-in-house-software-projects</a> and <a href="http://stackoverflow.com/questions/222827/how-do-you-organize-your-version-control-repository">how-do-you-organize-your-version-control-repository</a></p> <p>I have also looked at chapter 8 of <a href="http://www.pragprog.com/titles/svn/pragmatic-version-control-using-subversion" rel="nofollow">Pragmatic Version Control using Subversion</a>.</p> <p>They all have good advice, but I'm having a hard time relating it to my needs.</p> <p>Basically, I want to organize the code for our web server. We have a $WEBROOT/htdocs and $WEBROOT/cgi-bin. Under our htdocs dir we have $WEBROOT/htdocs/js and $WEBROOT/htdocs/css for java script and style sheets.</p> <p>Our "projects" are not really projects, but small bits of code - maybe a Perl script, java script file, and a style sheet. We have maybe a hundred or so of these small "projects" that are all pretty much independent of each other, but all live under the same $WEBROOT on the same webserver.</p> <p>Our code is not in subversion yet, but I want it to be - I am just having trouble organizing it efficiently. We can have multiple svn repositories if needed, but if each repository was only 3-10 elements, that seems like a waste to me.</p> <p>What I thought could work is something like this: If I write a script to count the running processes on the webserver (for the sake of an example). Let's say I have a perl script, a js file, and a css file. I could name the "project" webserver_processes, and check it into the repository as:</p> <pre><code>/svnrepo/webserver_processes/trunk </code></pre> <p>Under trunk, I could have:</p> <pre><code>htdocs/html/webserver_processes htdocs/js/webserver_processes htdocs/css/webserver_processes cgi-bin/webserver_processes </code></pre> <p>I don't have any static html docs in this "project" but if i did, they would go in the "html" directory.</p> <p>The benefit I see in this structure is that I can checkout one "project" at a time without really affecting anything else on the web server. The disadvantage (and maybe it isn't really a disadvantage) is deploying. I would have to deploy 1 project at a time from the repository. I don't see how it would be possible to create a working copy with my structure of $WEBROOT/htdocs and $WEBROOT/cgi-bin using this method.</p> <p><strong>Another option:</strong></p> <p>I could create a svn repository like this:</p> <pre><code>/svnrepo/webcode/trunk </code></pre> <p>Under trunk would be all of the code on my web server, in these two directories:</p> <pre><code>htdocs cgi-bin </code></pre> <p>The huge disadvantage would be, for a small code change to 1 element, I would have to checkout every piece of code in my web environment. The benefit (somewhat) would be I could do an "svn update" on our web server to pick up any changes committed to the repository.</p> <p>Maybe I am just making this more complex than it should be, but does anyone have any advice on how I could efficiently organize my code in subversion?</p> <p>Many thanks in advance!</p> <p>Brian</p> http://stackoverflow.com/questions/529207/best-way-to-organize-a-subversion-repository-of-many-small-projects/529241#529241 1 Answer by SilentGhost for Best way to organize a subversion repository of many small projects SilentGhost 2009-02-09T18:19:58Z 2009-02-09T18:19:58Z <p>I think your best bet is the second option: having all code under single repo with htdocs and cgi-bin directories. That's true that you'll have to check out all your code, but you do it once and the rest of changes will be much smaller. If it's a production server you obviously would need to check that all your code is production-ready: keep trunk green, so to speak.</p> <p>In future it might as well help with eliminating duplicate functionality.</p> http://stackoverflow.com/questions/529207/best-way-to-organize-a-subversion-repository-of-many-small-projects/529243#529243 5 Answer by Nathan for Best way to organize a subversion repository of many small projects Nathan 2009-02-09T18:20:09Z 2009-02-09T18:25:35Z <p>I think you're making the right call by keeping a single repository for your many projects, so I would only make a change to your deployment process:</p> <p>Your svn repo would look like (your first option.)</p> <pre><code>/svnrepo/project1/trunk /svnrepo/project1/trunk/htdocs /svnrepo/project1/trunk/css ... /svnrepo/project1/branches/branch1 /svnrepo/project1/tags/blah /svnrepo/project2/trunk /svnrepo/project3/trunk </code></pre> <p>When you want to deploy use a script to copy the file(s) to where they ought to be deployed. </p> <p>This way, you're keeping an artificial barrier (a folder) up to organize your thoughts between projects rather than having just a big mess of files.</p> <p>edit:accidentally saved &amp; additional directories added for clarity</p> http://stackoverflow.com/questions/529207/best-way-to-organize-a-subversion-repository-of-many-small-projects/529264#529264 1 Answer by Gorgapor for Best way to organize a subversion repository of many small projects Gorgapor 2009-02-09T18:25:01Z 2009-02-09T18:25:01Z <p>Since you're not committed to Subversion yet, consider using <a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a>. It's particularly well suited to version control of many small projects, since it has very little setup overhead.</p> http://stackoverflow.com/questions/529207/best-way-to-organize-a-subversion-repository-of-many-small-projects/529335#529335 0 Answer by jaaronfarr for Best way to organize a subversion repository of many small projects jaaronfarr 2009-02-09T18:45:51Z 2009-02-09T18:45:51Z <p>First, use a single repository. For an example of how well a single repository can scale, look at the <a href="http://svn.apache.org/repos/asf/" rel="nofollow">Apache svn repository</a>. <em>Everything</em> is one repository.</p> <p>If you use a single trunk that's directly deployed onto the webserver, then you'll need to make sure trunk stays deployment ready. That means all development should first happen on a branch that gets merged back in. You don't want to end up in a situation where one project is half-finished but in trunk and another project needs to do a bug fix deploy in trunk.</p> <p>I wouldn't worry about requiring people to check out the whole trunk, but if it's a real issue, then you might consider a hybrid approach:</p> <pre><code>/svnrepo/trunk/project1/... /svnrepo/trunk/project2/... /svnrepo/deploy/htdocs /svnrepo/deploy/cgi-bin </code></pre> <p>In this case, developers would have to do an <code>svn copy</code> from their project in trunk to the appropriate place in the deploy directory. You could then automatically release everything under <code>deploy</code>.</p>