tags:

views:

17

answers:

1

Can I specify the depth of an svn copy? (similar to the --depth argument of a checkout command) I would like to make a copy of all of the files immediately under a folder but not any of the sub-folders.

+2  A: 

Because SVN does not copy a folder with it's content it can't be controlled. If you copy the folder only it's reference will be created.

The simplest solution would be to do a simple copy (checkout) and delete the not needed folders from there.

khmarbaise