up vote 1 down vote favorite
share [g+] share [fb]

I'm running VisualSVN as my SVN server and using TortoiseSVN as the client. I've just renamed the server from mach1 to mach2 and now can't use SVN because it's looking for the repositories at http://mach1:81/ instead of the new name http://mach2:81/

Any idea how to fix this?

link|improve this question

77% accept rate
feedback

3 Answers

up vote 7 down vote accepted

Use the "relocate" option provided by Tortoise SVN. Just right click on the upper-most checked out folder, select relocate, and then enter the new URL.

link|improve this answer
feedback

Just change the address of the svn repository using switch --relocate command.

$svn switch --relocate file:///tmp/repos file:///tmp/newlocation.
In your case it would be $svn switch --relocate http://mach1:81/ http://mach2:81/

link|improve this answer
Thanks for the answer Jahangir. This answer is also correct and I wish I could marked 2 answers as correct but I was specifically looking for how to do this in TortoiseSVN which is why I marked Gordon's answer as correct. – Guy Sep 18 '08 at 19:30
feedback

First google hit: svn sw --relocate svn://example1.com:22/name http://example2.com:24/edc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.