i copied an existing svn folder (a) to a new folder b and want to also switch the repository url. Its still pointing to a repo.
i try svn switch –relocate but only get:
svn: Relocate can only change the repository part of an URL
What is the right way to do this task?
Thanks for your help!
--relocatecan only change the base repository, not the path within a repositoryFor example:
To switch from
http://serverA/repo/path/to/dirto another repohttp://serverB/repo/path/to/diryou would type in:svn switch http://serverA/repo http://serverB/repoRead svn switch from the SVN Book
As per your comment
You cannot use
--relocateto change folder path, only the repo.