@@ -19 +19 @@ Index: publish/quick-start.html -+ Understanding the terms ++ Terminology @@ -59 +59 @@ Index: publish/quick-start.html -+ Install the svn client to start collaborating on the project ++ Install the svn client to start collaborating on a project @@ -100 +100 @@ Index: publish/quick-start.html -+
++
@@ -102,2 +102,2 @@ Index: publish/quick-start.html -+ Understanding the terms -+ mod_dav_svn module) or by an svnserve server. ++ The repository acts as a single source of truth and – as a central ++ storage – it contains the complete history of changes of the versioned ++ data in form of revisions. @@ -127 +128 @@ Index: publish/quick-start.html -+ svnserve: svn://svn.example.com/repos/MyRepo/MyProject/trunk ++ svnserve: svn://svn.example.com/repos/MyRepo/MyProject/branches/MyBranch @@ -130 +131 @@ Index: publish/quick-start.html -+ Direct access (Unix-style): file://var/svn/repos/MyRepo/MyProject/trunk ++ Direct access (Unix-style): file://var/svn/repos/MyRepo/MyProject/tags/1.1.0 @@ -133 +134 @@ Index: publish/quick-start.html -+ Direct access (Windows-style): file:///C:/Repositories/MyRepo/MyProject/trunk ++ Direct access (Windows-style): file:///C:/Repositories/MyRepo/trunk/MyProject @@ -154 +155,4 @@ Index: publish/quick-start.html -+ regular directory with version-control capabilities. ++ regular directory with version-control capabilities. A working copy ++ has an administrative directory named .svn at its root. The ++ administrative directory contains metadata necessary for Subversion to ++ manage the version-control capabilities. @@ -176 +180 @@ Index: publish/quick-start.html -+ In case you want to import an existing non-versioned data to SVN ++ In case you want to import existing non-versioned data into an SVN @@ -217 +221 @@ Index: publish/quick-start.html -+$ svn checkout https://svn.example.com/repos/MyRepo/MyProject/trunk ++$ svn checkout https://svn.example.com/repos/MyRepo/MyProject/trunk MyWorkingCopy @@ -222 +226 @@ Index: publish/quick-start.html -+ will be located in MyProject directory on your computer. Note that ++ will be located in MyWorkingCopy directory on your computer. Note that @@ -253,2 +257,2 @@ Index: publish/quick-start.html -+ It is a rule to update your working copy before committing local -+ modifications to the repository. ++ It is a good practice to update your working copy before committing ++ local modifications to the repository. @@ -267 +271 @@ Index: publish/quick-start.html -+ thoroughly, you are ready to publish them to the central repository. ++ thoroughly, you are ready to commit them to the central repository. @@ -309,4 +313,5 @@ Index: publish/quick-start.html -+ Note the -m (--message) option. You must always include -+ descriptive commit log message. The log message has to help others -+ to understand why you made this commit, it has to contain a summary -+ of the changes you made. ++ Note the -m (--message) option. You should always include ++ a descriptive commit log message. It should help others including ++ 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. @@ -316 +321 @@ Index: publish/quick-start.html -+