Reputation: 11793
My current SVN URL is:
I want to duplicate or move all staff including all of the change history under this URL to another URL like:
Can this be done on an SVN client (TortoiseSVN), or does it need to be done on the SVN server?
Upvotes: 0
Views: 497
Reputation: 97270
"It depends".
When you see only old-URL and new-URL, you can't be sure, are they belong to the same repository (with /
root-path) or to different, i.e which part of URL is repository-URL and which - path inside repository.
If you'll see at svn info
output, you can answer on this question, see @
URL: ...
Relative URL: ...
Repository Root: ...
fields and can select the right tool: for single-repository operation you'll copy with svn-client (using "Branch|tags"), for cross-repositories copies you have to use some repository-administration tools (svnadmin load|dump) and access to SVN-server
Upvotes: 1
Reputation: 1684
Your need to move Repository "A" to Repository "D". To achieve this, you need to work on server side. First you need to dump the "Repo A" and reload to "Repo D". As per my knowledge, You cant move repository usingSVN client. Please correct me, if i am wrong. [Move subversion repository]
Upvotes: 1
Reputation: 3755
Try this :
Project --> Tortoise SVN --> Relocate ---> Change the URL
Upvotes: 1