You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/05/28 11:40:11 UTC

svn commit: r1682185 - /subversion/site/publish/quick-start.html

Author: stsp
Date: Thu May 28 09:40:11 2015
New Revision: 1682185

URL: http://svn.apache.org/r1682185
Log:
* publish/quick-start.html: Fix Windows example. Backslash in URLs is invalid.

Modified:
    subversion/site/publish/quick-start.html

Modified: subversion/site/publish/quick-start.html
URL: http://svn.apache.org/viewvc/subversion/site/publish/quick-start.html?rev=1682185&r1=1682184&r2=1682185&view=diff
==============================================================================
--- subversion/site/publish/quick-start.html (original)
+++ subversion/site/publish/quick-start.html Thu May 28 09:40:11 2015
@@ -57,12 +57,11 @@ $ svn up
 <p>On Windows:</p>
 
 <pre>
-&gt; set REPOS_DIR=C:\repos\my-repos
 &gt; mkdir C:\repos
-&gt; svnadmin create %REPOS_DIR%
-&gt; svn mkdir -m "Create directory structure." "file:///%REPOS_DIR%/trunk" "file:///%REPOS_DIR%/branches" "file:///%REPOS_DIR%/tags"
+&gt; svnadmin create C:\repos\my-repos
+&gt; svn mkdir -m "Create directory structure." "file:///C:/repos/my-repos/trunk" "file:///C:/repos/my-repos/branches" "file:///C:/repos/my-repos/tags"
 &gt; cd my-directory
-&gt; svn checkout "file:///%REPOS_DIR%/trunk" ./
+&gt; svn checkout "file:///repos/my-repos/trunk" ./
 &gt; svn add --force ./
 &gt; svn commit -m "Initial import"
 &gt; svn up