I have a project with a directory structure like this:
project
|--source
|--fgh
|--...
|--ijk
`--tests
|--abc
|--cde
|--...
|--utils
I want to checkout the source
and tests/utils
directories (and everything inside recursively). Remainder directories (like abc
, cde
, ...) should not be checked out since they are huge.
I think svn co --depth empty
is what I'm looking for. But then how to check out only tests/utils
if test
doesn't exist after the checkout is done?