(ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Loathe
Here is what I need to do. I have an existing SVN repository. I need to copy this repository into a NEW repository. It's going to become an entirely new code base, not a branch. So far, if I copy it or anything it tries to connect to the original repository because of all the svn files in

Re: (ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Greg Luce
I would do an Export of the code from SVN to a new directory. That new codebase then won't have any .svn files in it. Then you can create a new repo and import that new codebase to your new repo. Greg On Mon, Jun 30, 2008 at 7:57 AM, Loathe [EMAIL PROTECTED] wrote: Here is what I need to do.

Re: (ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Qing Xia
So, if I understand correctly, you are trying to set up a new repository that will include the same content as what is currently in the existing one? If so, try the following: 1. On the server where the repository currently lives, go to the command prompt and type in: svnadmin dump

Re: (ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Qing Xia
Forgot to mention that once the new pository is set up, you need to run the Relocate option in TortoiseSVN on all work stations that have code checkout of the repository. It will point communication with SVN at the new location of the repository. This is handy if your repository is large and

Re: (ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Qing Xia
Greg's way is much simpler and works perfect if your existing repository is still very young or if you do not intend to keep revision history in the repository. On Mon, Jun 30, 2008 at 8:39 AM, Greg Luce [EMAIL PROTECTED] wrote: I would do an Export of the code from SVN to a new directory. That

RE: (ot) How do I creat a new SVN repos from an existing SVN repos?

2008-06-30 Thread Bobby Hartsfield
http://acoderslife.com http://cf4em.com -Original Message- From: Loathe [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2008 7:57 AM To: CF-Talk Subject: (ot) How do I creat a new SVN repos from an existing SVN repos? Here is what I need to do. I have an existing SVN repository. I need