On Thu, Mar 15, 2012 at 05:40:23PM +0400, Konstantin Kolinko wrote: > 1) do "svn co --depth immediates" for the repository root > 2) and follow it by "svn up --set-depth" for the subfolders that you > are interested in.
You can also use --depth empty in the first command to avoid having all immediate children in the working copy. An "svn update --set-depth infinity foo" of a child directory 'foo' will still work. You'll just need know the name of the child. You can see the list of children with 'svn ls' even in a depth=empty checkout. See also the entry in the 1.7 release notes which talks about the new "svn up --parents" option that makes pulling in children of children a little easier: http://subversion.apache.org/docs/release-notes/1.7.html#update-parents