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

I've got two SVN branches (eg development and stable) and want to switch from one to another...

In every tutorial there is command like:
rootOfLocalSvnCopy:>svn switch urlToNewBranch .

But it leads in error in my case:

svn: REPORT request failed on '/svn/rootOfLocalSvnCopy/!svn/vcc/default'<br/>
svn: Cannot replace a directory from within

Every help that I found is about svn switch --relocate but I don't want to relocate, just to change my working copy to another branch

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

OK, I get it work.

Error was in dot that I used to specify local directory in a command. correct usage is without it, svn can handle it all itself:

rootOfLocalSvnCopy:>svn switch urlToNewBranch

(No dot at the end...)

link|improve this answer
Can you accept your own answer as an answer (I think you earn a badge for that) – Sander Rijken Sep 22 '08 at 18:45
there isn't any 'accept answer' link in my answer.. – Supowski Sep 23 '08 at 10:57
feedback

Your Answer

 
or
required, but never shown

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