Re: Merging repositories => UUID conflict

2012-10-16 Thread Jan Keirse
On Mon, Oct 15, 2012 at 5:44 PM, Thorsten Schöning wrote: > Guten Tag Jan Keirse, > am Montag, 15. Oktober 2012 um 16:08 schrieben Sie: > > > However, when I try to svn relocate the working copies from > > repository B to repository A because the UUID is different between > > the 2 servers. I had

Re: Merging repositories => UUID conflict

2012-10-15 Thread Thorsten Schöning
Guten Tag Jan Keirse, am Montag, 15. Oktober 2012 um 16:08 schrieben Sie: > However, when I try to svn relocate the working copies from > repository B to repository A because the UUID is different between > the 2 servers. I had hoped I would be able to just relocate and > after an update svn would

Re: Merging repositories => UUID conflict

2012-10-15 Thread Stephen Connolly
On 15 October 2012 15:08, Jan Keirse wrote: > Hello, > > we currently have multiple repositories but want to merge all of these for > various reasons but am running into a problem. > Here's what we have now: > Repositories A and B, they have no paths in common, except for /, because > repository

Merging repositories => UUID conflict

2012-10-15 Thread Jan Keirse
Hello, we currently have multiple repositories but want to merge all of these for various reasons but am running into a problem. Here's what we have now: Repositories A and B, they have no paths in common, except for /, because repository A has /trunk, /branches, /tags while B has /project[x]/bran

Re: Merging repositories - is it possible?

2010-08-07 Thread JWalker
Thanks, this is what I searched for. Ivan On 6 Авг, 18:12, Itamar O wrote: > On Fri, Aug 6, 2010 at 4:56 PM, JWalker wrote: > > Hello, > > > This is my first post here. > > > Is it possible to merge several repositories in a new empty > > repository? > > > I am asking this, because I made sever

RE: Merging repositories - is it possible?

2010-08-06 Thread Jon Foster
Hi, Les Mikesell wrote: > On 8/6/2010 10:12 AM, Itamar O wrote: > > On Fri, Aug 6, 2010 at 4:56 PM, JWalker > > This is my first post here. > > > > > > Is it possible to merge several repositories in a new empty > > > repository? > > > > > > I am asking this, because I made several repositories o

Re: Merging repositories - is it possible?

2010-08-06 Thread Les Mikesell
On 8/6/2010 10:12 AM, Itamar O wrote: On Fri, Aug 6, 2010 at 4:56 PM, JWalker This is my first post here. Is it possible to merge several repositories in a new empty repository? I am asking this, because I made several repositories of one project, one repository for mecha

Re: Merging repositories - is it possible?

2010-08-06 Thread Itamar O
On Fri, Aug 6, 2010 at 4:56 PM, JWalker wrote: > Hello, > > This is my first post here. > > Is it possible to merge several repositories in a new empty > repository? > > I am asking this, because I made several repositories of one project, > one repository for mechanics, another for the software,

Merging repositories - is it possible?

2010-08-06 Thread JWalker
Hello, This is my first post here. Is it possible to merge several repositories in a new empty repository? I am asking this, because I made several repositories of one project, one repository for mechanics, another for the software, another one for the electronics and so on. Now I see that this

Re: merging repositories

2010-03-26 Thread Tobias G. Pfeiffer
Hi, thanks for your reply! Am Donnerstag, 25. März 2010, 12:48 schrieb Jon Foster: > Tobias wrote: > > I have a project with two different repositories, > > that I want to merge into one common repository. > > Would "svndumptool merge" do what you want? > > http://svn.borg.ch/svndumptool/ A co

RE: merging repositories

2010-03-25 Thread Jon Foster
Hi, Tobias wrote: > I have a project with two different repositories, > that I want to merge into one common repository. Would "svndumptool merge" do what you want? http://svn.borg.ch/svndumptool/ (I haven't tried it, it's just something I found and bookmarked when investigating Subversion) >

merging repositories

2010-03-25 Thread Tobias Pfeiffer
Hi, I have a project with two different repositories, named "Base" and "Develop" that I want to merge into one common repository. The simplest way would surely be to say: $ svnadmin dump Base/ base.dmp $ svnadmin dump Develop/ develop.dmp $ svnadmin load --parent-dir "Base/" Merged/ < base.dm