On Thu, Jul 30, 2009 at 10:36, KSChan<mr.ksc...@gmail.com> wrote: > On Thu, Jul 30, 2009 at 1:57 AM, Philip Olson <phi...@roshambo.org> wrote: >> >> Hi all, >> >> Here's a draft of what our checkout instructions might look like. The idea >> is to consolidate where we talk about checking out the docs, then link >> there. Please have a look and improve: >> >> http://wiki.php.net/doc/scratchpad/howto/checkout > > If i'm going to checkout all language in doc-editor, am i going to do the > following? > > svn co http://svn.php.net/repository --depth empty phpdoc > > svn co http://svn.php.net/repository/phpdoc/fr/trunk --depth infinity > phpdoc/fr > svn co http://svn.php.net/repository/phpdoc/jp/trunk --depth infinity > phpdoc/jp > > svn co http://svn.php.net/repository/phpdoc/en/trunk --depth infinity > phpdoc/en
If you don't mind the "trunk/" in the dir names you could: $ svn co http://svn.php.net/repository/phpdoc --depth immediates $ cd phpdoc/ $ svn up * --set-depth immediates $ svn up */trunk --set-depth infinity Using svn:externals magic however is the simplest approach: $ svn checkout http://svn.php.net/viewvc/phpdoc/modules/doc-all/ That'll create a directory structure you tried to make above. -Hannes