show/hide this revision's text 3 deleted 27 characters in body

In case you have changes to the files, and cannot delete them, you can use the Subversion 1.5 feature that allows you to 'checkout with obstructions'.

Just delete the .svn directory in this directory and:
and the directories below,
(you don't need to delete inside directories when using --depth files, thanks Eric)

In case the broken directory was the top directory of the working copy:

svn checkout --depth files --force REPOS WC

And if the directory above the broken one is still versioned run:

svn update --depth files --force WC

in that directory.
In both samples REPOS is the url in the repository that matches the broken directory, and WC is the path to the directory.

Files that were originally modified will be in the modified state after this.

show/hide this revision's text 2 Add explanation about REPOS and WC, and make note about --depth files

In case you have changes to the files, and cannot delete them, you can use the Subversion 1.5 feature that allows you to 'checkout with obstructions'.

Just delete the .svn directory in this directory , and:
and the directories below,and: (you don't need to delete inside directories when using --depth files, thanks Eric)

In case the broken directory was the top directory of the working copy:

svn checkout --depth files --force REPOS WC

And if the directory above the broken one is still versioned run:

svn update --depth files --force WC

in that directory.
In both samples REPOS is the url in the repository that matches the broken directory, and WC is the path to the directory.

Files that were originally modified will be in the modified state after this.

show/hide this revision's text 1

In case you have changes to the files, and cannot delete them, you can use the Subversion 1.5 feature that allows you to 'checkout with obstructions'.

Just delete the .svn directory in this directory, and the directories below, and:

In case the broken directory was the top directory of the working copy:

svn checkout --force REPOS WC

And if the directory above the broken one is still versioned run:

svn update --force

in that directory.

Files that were originally modified will be in the modified state after this.