Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a SVN Repository that has moved to a new address/path. However, I've got a working copy with uncommitted source code still pointing to the old (now invalid) repository path. How do you change a working copy to point at a new repository?

share|improve this question

1 Answer

up vote 42 down vote accepted

Use the svn switch command with the --relocate command line option.

share|improve this answer
Thanks. This is what I used: svn switch --relocate file:///Users/user/old_repository/project/trunk file:///Users/user/new_repository/project/trunk – quano Jan 30 '10 at 3:02
thank for your support. It run is OK – dakiquang Oct 17 '12 at 7:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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