I currently have a Working Copy with two branches in it:
/Source
/Source/v1.2
/Source/v1.3
I want to delete this and instead only check out the branch I need (i.e. go one level down the directory tree and only check out /Source/v1.3). However the working copy of v1.3 contains a bunch of ignored files that I actually want to keep. So I don't want to just delete the whole working copy and start over. And of course I don't want to manually try to locate all of the ignored files and preserve them. Is there any sort of command to do this?
I'm on Windows using TortoiseSVN as well as Slik SVN for automated builds.
svn:ignoreproperties). You can then import them for another file/folder. – DevNull Jun 27 '11 at 20:34svn switch --force, assuming I remember correctly. – s.m. Jun 27 '11 at 20:39