billcoke
billcoke

Reputation: 770

Tortoise SVN merge of 2 repositories

I have 2 repositories that I would like to merge. I would like to take the 1st repo [PRIMARY] and pull in all the content from the 2nd repo [SECONDARY]. They don't share content so I don't need merge different versions of the same file. I would like to retain file history of the elements in SECONDARY when they are pulled into PRIMARY.

How would I go about this using TortoiseSVN 1.5.2?

Upvotes: 4

Views: 5701

Answers (3)

nfechner
nfechner

Reputation: 17535

In short: You can't (at least with Tortoise).

But the Subversion FAQ describes a way (Using svn dump and svn load).

Upvotes: 6

the_mandrill
the_mandrill

Reputation: 30862

I don't think it's even possible to merge two repositories in this way. Even if you could do it then you'd still have the problem that the old revision numbers are now meaningless.

Upvotes: 0

user6212
user6212

Reputation:

I don't know that you can merge the histories (PRIMARY will have r123 and SECONDARY will have its own r123) but you could setup an external.

Upvotes: 2

Related Questions