Hi,
Is there a way to delete a folder, lets call it FolX from an SVN trunk recursively? A quick search on google only tells me how to recursively delete all .svn folders and this is not what I want to do
Hi,
Is there a way to delete a folder, lets call it FolX from an SVN trunk recursively? A quick search on google only tells me how to recursively delete all .svn folders and this is not what I want to do
Try something like the following on a posix system:
find ./ -name "FolX" | xargs svn delete --force
This will find all matching files/folders starting in the current directory and perform the action on them i.e. svn delete. I'm not sure how to do this in windows though without cygwin.
For win32, the commenter below suggests a similar solution:
/R . %1 in (*.EXT) do svn delete %1
svn delete FolX --force
should do the trick even if there are unversioned files in the subtree.