php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #55280
Patch svn-php revision 2011-07-25 20:02 UTC by fa@php.net

Patch svn-php for Website problem Bug #55280

Patch version 2011-07-25 20:02 UTC

Return to Bug #55280 | Download this patch
Patch Revisions:

Developer: fa@php.net

Index: php/trunk/svn.php
===================================================================
--- php/trunk/svn.php   (Revision 313681)
+++ php/trunk/svn.php   (Arbeitskopie)
@@ -7,7 +7,7 @@
 <p>
  You can find more information about SVN, and
  download clients for most major platforms, at
- <a href="http://subversion.tigris.org">the official SVN site</a>.
+ <a href="http://subversion.apache.org">the official SVN site</a>.
 </p>


@@ -67,16 +67,22 @@
 <ol>

  <li>
-  Obtain the latest PHP source from SVN. There is a single <i>php-src</i>
-  directory that contains all PHP branches and tags. To get PHP from SVN,
-  use the <i>"svn checkout https://svn.php.net/repository/php/php-src/branches/BRANCH"</i> notation. To checkout the
-  latest, consider the following SVN commands:<br /><br />
+  The <em>recommended</em> way is to make a sparse checkout of the php-src directory only.
+  <code>svn checkout https://svn.php.net/repository/php/php-src --depth immediates php-src</code><br />
+  <code>cd php-src</code><br />
+  <code>svn update branches tags --set-depth immediates</code><br />
+  <code>svn update trunk branches/PHP_5_4 branches/PHP_5_3 --set-depth infinity</code><br /><br />
+
+  Or alternatively, you can fetch the current PHP source code and the active branches:<br /><br />
   <strong>PHP 5.3</strong>:
   <code>svn checkout https://svn.php.net/repository/php/php-src/branches/PHP_5_3 php-src-5.3</code>
   <br />
   <strong>PHP 5.4</strong>:
   <code>svn checkout https://svn.php.net/repository/php/php-src/branches/PHP_5_4 php-src-5.4</code>
   <br /><br />
+  <strong>PHP HEAD</strong>:
+  <code>svn checkout https://svn.php.net/repository/php/php-src/trunk php-src-trunk</code>
+  <br /><br />
   The branch names can also be used for SVN diff and merge operations.
  </li>

@@ -109,7 +115,8 @@
  <a href="http://svn.php.net/">the web-based view of the SVN
  server</a> to see what is available. For example, to checkout the
  latest english version of the PHP manual:<br />
- <code>svn checkout https://svn.php.net/repository/phpdoc/modules/doc-en ./phpdoc-en</code>
+ <code>svn checkout https://svn.php.net/repository/phpdoc/modules/doc-en ./phpdoc-en</code><br /><br />
+ You can also check the <a href="https://wiki.php.net/vcs/svnfaq">SVN FAQ on the wiki</a>.
 </p>

 <a name="buildconf_fail"></a>

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu May 09 15:01:34 2024 UTC