Re: What is the easiest way to copy an existing Subversion Repository to another server?

2011-12-25 Thread Nico Kadel-Garcia
On Wed, Dec 14, 2011 at 6:54 AM, Ulrich Eckhardt wrote: > Am 14.12.2011 05:23, schrieb Craig Burlock: > >> I need to create a new clone of an existing Subversion Repository to run >> on >> a new server. What is the easiest way of doing this? > > > Apart from the mentioned dump/load and svnsync, a

Re: What is the easiest way to copy an existing Subversion Repository to another server?

2011-12-14 Thread Ulrich Eckhardt
Am 14.12.2011 05:23, schrieb Craig Burlock: I need to create a new clone of an existing Subversion Repository to run on a new server. What is the easiest way of doing this? Apart from the mentioned dump/load and svnsync, a plain filesystem copy works, too, provided you either use BDB on two si

Re: What is the easiest way to copy an existing Subversion Repository to another server?

2011-12-13 Thread Ryan Schmidt
On Dec 13, 2011, at 22:23, Craig Burlock wrote: > I need to create a new clone of an existing Subversion Repository to run on a > new server. What is the easiest way of doing this? svnsync. http://svnbook.red-bean.com/en/1.7/svn.ref.svnsync.html

Re: What is the easiest way to copy an existing Subversion Repository to another server?

2011-12-13 Thread Patrick Burma
Hey Craig, probably the best way is to do export/import using the svnadmin dump and load commands. svnbook has a little guide on this scenario you can see here. http://svnbook.red-bean.com/en/1.7/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate -Pat On Tue, Dec 13, 2011 at 9:23 PM, Craig B

What is the easiest way to copy an existing Subversion Repository to another server?

2011-12-13 Thread Craig Burlock
Hello all, I need to create a new clone of an existing Subversion Repository to run on a new server. What is the easiest way of doing this? I haven't done this before and any help would be very much appreciated. Thanks.