Re: Multiple projects
From: Ryan Schmidt <subversion-2011a_at_ryandesign.com>
Date: Tue, 5 Apr 2011 12:28:27 -0500
Please use Reply All so your replies go to the list too, not just to me. This way others can participate in and benefit from the discussion.
On Apr 5, 2011, at 10:57, pcr_at_pcrt.us wrote:
> Yes, I see the great flexibility. But there are no examples in the book of the svnadmin commands to do it. The command I used, from appendix A, set up several directories underneath repos, with no intevening project directories. I hesitate to change the paths to those directories by brute force and have no idea how to use svnadmin to do all the reshuffeling. I would rather start over, but again, I could find no example of an svn create that puts in the project directories. I apologize if this all sounds dumb.
"svnadmin create" is only used to create the repository (the filesystem, the database). What you do with the repository (filesystem, database) after that (i.e. what directories and files you put in it) is up to you, and you'll be using the svn command, not the svnadmin command, to do so.
On Apr 5, 2011, at 11:47, pcr_at_pcrt.us wrote:
> Alright, I think I have it now. There is no one svnadmin create statement that can set up three projects. But I can do them one at a time it seems. I did this
You've used multiple svnadmin create commands, which means you now have several independent repositories; based on the names you've given them, I suspect you intend to use each repository to contain a single project. That's fine. By the way, you don't need to "mkdir" before you "svnadmin create"; svnadmin will create the directory for you.
You can now create the trunk, branches and tags directories in each project's repository:
svn mkdir file:///usr/svn/repos/project1/trunk
Alternately, you could have decided to create a single repository to hold all your projects:
svnadmin create /usr/svn/myrepository
Then you would create directories for each project inside it, along with the trunk / branches / tags directories:
svn mkdir file:///usr/svn/myrepository/project1
Or, if the versions of each project are the same and the projects are highly interrelated, then perhaps this structure is more desirable:
svn mkdir file:///usr/svn/myrepository/trunk
In each case, instead of using a file:// URL to the repository, of course you should really be setting up svnserve and/or httpd to access the repository(ies), and you should then use the corresponding svn:// or http:// URL(s) you've chosen.
You'll have to decide whether you want multiple repositories, one for each project, or a single repository containing multiple projects; there are trade-offs either way. If you change your mind later, you can always change it -- combine multiple repositories into one, or split a monolithic repository into several smaller ones -- but again both operations come with consequences.
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.