tags:

views:

61

answers:

1

Hello, when I run "svnversion -c", I found that this is a partial checkout dir, but how to check which dir is missing? (without a re-checkout)

$ svnversion -c
49516:56223P

thanks.

+1  A: 

Check out the section on Sparse Directories in the manual.

svn info [DIR]

will give you a line Depth: telling you the checkout depth of the given DIR.

Thomas
And 'svn up --set-depth infinity DIR' can then check out the missing pieces.
Bert Huijben
`svn up --set-depth infinity` works for me, and `svn info` does not print Depth line, thanks.
lidaobing