SVN repo looks like this:
top/
top/one
top/two
top/three
...etc
You don't want to checkout the entire top folder but you don't know about SVN's sparse checkout feature.
So you check-out repo folder top/one into C:\svn\top\one and then you checkout repo folder top/two into C:\svn\top\two
At this point, both of the checked-out folders have their own .svn folder
Then you discover sparse checkouts.
QUESTION
How do you transform the "standalone" checkout of these two folders into a sparse checkout of the top-level folder with minimal re-checking out?
Is it as simple as initiating a sparse check-out while not overwriting existing items and then simply deleting the pre-existing .svn
folders?