Re: Automatically populate intermediate directories during check out

2010-09-04 Thread Eric Hudish
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

Re: Automatically populate intermediate directories during check out

2010-09-04 Thread Stefan Sperling
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

Automatically populate intermediate directories during check out

2010-09-04 Thread Mark _
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.