My problem is that I would like to make a copy of a subfolder of a checkout which will be a new checkout, but without connecting to the repository.
Previously I'd used svn 1.6. There, one needs just to copy any folder because each folder has a .svn
directory. In svn 1.8, now the .svn
directory is only at the top level, so plain copying does not work anymore.
Is there a way to create a new checkout of a subfolder of an existing checkout without needing a connection to the repository?
Clarification: 1) I have checkout in 1.8; 2) I want to create a subfolder checkout, e.g. on another drive; 3) to do this without connecting to repository, no add, no update, no checkin. It was simple to do in 1.6 by just copying the folder to another place, but seems unclear how to do it in 1.8.