Author: lyalyakin
Date: Wed Nov 1 22:30:33 2017
New Revision: 1814014
URL: http://svn.apache.org/viewvc?rev=1814014&view=rev
Log:
Add section comments to Quick Start.
* site/staging/quick-start.html:
(#installing-the-client,
#terminology,
#what-is-a-repository,
#what-is-a-working-copy,
#basic-tasks
#importing-data,
#checking-out-a-working-copy,
#updating-a-working-copy,
#making-changes
#modifying-existing-files,
#committing-changes,
#performing-file-and-dir-operations,
#adding-new-files-and-directories,
#moving-and-renaming-files-and-directories,
#copying-files-and-directories,
#deleting-files-and-directories,
#reverting-local-changes,
#branching-and-tagging
#url-to-url-copy
#more-help): add div comments to the document.
Modified:
subversion/site/staging/quick-start.html
Modified: subversion/site/staging/quick-start.html
URL:
http://svn.apache.org/viewvc/subversion/site/staging/quick-start.html?rev=1814014&r1=1814013&r2=1814014&view=diff
==============================================================================
--- subversion/site/staging/quick-start.html (original)
+++ subversion/site/staging/quick-start.html Wed Nov 1 22:30:33 2017
@@ -14,6 +14,7 @@
<!--#include virtual="/site-nav.html" -->
<div id="site-content">
<!--#include virtual="/site-notice.html" -->
+<!-- **************** BEGIN CONTENT ***************** -->
<h1>Apache Subversion: Quick Start</h1>
@@ -62,7 +63,7 @@ graphical client. We do not maintain a
we recommend you do a Web search for <tt>Subversion GUI</tt> client.</p>
</div>
-</div>
+</div> <!-- #installing-the-client -->
<div class="h2" id="terminology">
<h2>Terminology
@@ -95,7 +96,7 @@ data in form of revisions.</p>
<tt>file:///C:/Repositories/MyRepo/trunk/MyProject</tt></li>
</ul>
-</div>
+</div> <!-- #what-is-a-repository -->
<div class="h3" id="what-is-a-working-copy">
<h3>What is a Working Copy?
@@ -120,9 +121,9 @@ manage the version-control capabilities.
<p>There can be as much working copies from the same repository or project
as you want with any combination of local modifications.</p>
-</div>
+</div> <!-- #what-is-a-working-copy -->
-</div>
+</div> <!-- #terminology -->
<div class="h2" id="basic-tasks">
<h2>Basic tasks
@@ -144,7 +145,7 @@ repository, you should run the
$ svn import https://svn.example.com/repos/MyRepo/MyProject/trunk -m "Initial
project import"
</pre>
-</div>
+</div> <!-- #importing-data -->
<div class="h3" id="checking-out-a-working-copy">
<h3>Checking out a working copy
@@ -177,7 +178,7 @@ branch. Moreover, Subversion repository
unrelated projects and it is better to have a dedicated working copy
for each of them, not a single working copy for all of the projects.</p>
-</div>
+</div> <!-- #checking-out-a-working-copy -->
<div class="h3" id="updating-a-working-copy">
<h3>Updating a working copy
@@ -197,7 +198,7 @@ changes made by your colleagues.</p>
<p>It is a good practice to update your working copy before committing
local modifications to the repository.</p>
-</div>
+</div> <!-- #updating-a-working-copy -->
<div class="h3" id="making-changes">
<h3>Making changes in your local working copy
@@ -221,7 +222,7 @@ processor, graphics editor, audio editin
soon as you save the changes to disk, Subversion will recognize them
automatically.</p>
-</div>
+</div> <!-- #modifying-existing-files -->
<div class="h4" id="committing-changes">
<h4>Committing your changes to the repository
@@ -253,9 +254,9 @@ a descriptive commit log message. It sh
yourself understand the reason why you made this commit. It is a
good idea to include a summary of your changes in the log message, too.</p>
-</div>
+</div> <!-- #committing-changes -->
-</div>
+</div> <!-- #making-changes -->
<div class="h3" id="performing-file-and-dir-operations">
<h3>Performing file and directory operations
@@ -289,7 +290,7 @@ the new files unless you run the
$ svn add foo.cs
</pre>
-</div>
+</div> <!-- #adding-new-files-and-directories -->
<div class="h4" id="moving-and-renaming-files-and-directories">
<h4>Moving and renaming files and directories
@@ -306,7 +307,7 @@ $ svn move foo.cs bar.cs
<p>The command <tt>svn rename</tt> is an alias for the <tt>svn move</tt>.</p>
-</div>
+</div> <!-- #moving-and-renaming-files-and-directories -->
<div class="h4" id="copying-files-and-directories">
<h4>Copying files and directories
@@ -321,7 +322,7 @@ $ svn move foo.cs bar.cs
$ svn copy foo.cs bar.cs
</pre>
-</div>
+</div> <!-- #copying-files-and-directories -->
<div class="h4" id="deleting-files-and-directories">
<h4>Deleting files and directories
@@ -336,7 +337,7 @@ $ svn copy foo.cs bar.cs
$ svn delete foo.cs
</pre>
-</div>
+</div> <!-- #deleting-files-and-directories -->
<div class="h4" id="reverting-local-changes">
<h4>Reverting or discarding local changes
@@ -358,9 +359,9 @@ caution!
</p>
</div>
-</div>
+</div> <!-- #reverting-local-changes -->
-</div>
+</div> <!-- #performing-file-and-dir-operations -->
<div class="h3" id="branching-and-tagging">
<h3>Branching and tagging
@@ -397,9 +398,9 @@ mainline trunk:</p>
$ svn copy https://example.com/MyRepo/trunk
https://example.com/MyRepo/branches/MyNewBranch -m "Creating a new branch"
</pre>
-</div>
+</div> <!-- #url-to-url-copy -->
-</div>
+</div> <!-- #branching-and-tagging -->
<div class="h2" id="more-help">
<h2>Getting more help
@@ -413,10 +414,11 @@ for Subversion users and administrators.
<a href="http://svnbook.red-bean.com/en/1.8/"
>http://svnbook.red-bean.com/en/1.8/</a></p>
-</div>
+</div> <!-- #more-help -->
-</div>
+</div> <!-- #basic-tasks -->
+<!-- ***************** END CONTENT ****************** -->
</div> <!-- #site-content -->
</body>
</html>