Excerpt from svn help:
$ svn --help co
-N [--non-recursive] : obsolete; try --depth=files or
--depth=immediates
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')
In standard usage I believe you should be
On Sat, Sep 04, 2010 at 05:07:31PM +, Mark _ wrote:
>
> Hi all,
>
> When I want to check out something like
> http://mysvn/trunk/firstDir/secondDir/thirdDir/FourthDir/FifthDir I do the
> following:
> svn co http://mysvn/trunk
> cd trunk
> svn up firstDir --depth files
> cd firstDir
> svn up
Hi all,
When I want to check out something like
http://mysvn/trunk/firstDir/secondDir/thirdDir/FourthDir/FifthDir I do the
following:
svn co http://mysvn/trunk
cd trunk
svn up firstDir --depth files
cd firstDir
svn up secondDir --depth files
cd secondDir
svn up thirdDir --depth files
etc. etc.