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

Not for the first time, I've accidentally done "svn switch" from somewhere below the root of my project. This switches that subdirectory only, but how do I undo this?

If I try switching the subdirectory back to the original branch I get:

"svn: Directory 'subdir\_svn' containing working copy admin area is missing"

Update: I've got changes in the subdir, so I don't want to do a delete.

In the short term I've fixed it by reapplying the changes, but I was after a way to get Subversion to re-switch back to where I came from... or is this a missing feature?

link|improve this question

17% accept rate
feedback

3 Answers

Quick hack: Delete the directory, go one level up, and run svn update.

link|improve this answer
I have changes in my switched sandbox, so can't delete the subdirectory... – fiddlesticks Sep 19 '08 at 9:55
You can make a patch, do rm/svn up, and reapply the patch. – Marcin Gil Sep 19 '08 at 9:58
1  
I hate svn. So much. It takes me a day of switching, updating, massaging, deleting and then switching a few times more to get a clean switch. – Rhythmic Fistman Feb 15 '10 at 15:17
feedback

Without knowing exactly how you did the switch and how your directory and repository layout is, it's hard to say what went wrong in your case.

There is no way to really "revert" a switch. Generally, svn switch can be undone by a switch back to the original location, i.e. when the original location is at svn://url/to/orig/dir, then the following should work:

Switching a subdirectory to a different part of the repository

svn switch svn://path/to/switched/dir/ subdir

... and switching it back again

svn switch svn://url/to/orig/dir subdir

In your case it sounds as if you tried to switch a directory that is not part of your working copy.

link|improve this answer
This is basically what I tried. The error I got is in the question... – fiddlesticks Sep 19 '08 at 12:49
feedback
svn revert <dir>

Or, yes, delete it and grab another copy.

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.