[svnbook commit] r3147 - trunk/src/en/book

cmpilato noreply at red-bean.com
Mon Jun 16 14:11:33 CDT 2008


Author: cmpilato
Date: Mon Jun 16 14:11:32 2008
New Revision: 3147

Log:
Fix some long lines.

Modified:
   trunk/src/en/book/ch09-reference.xml

Modified: trunk/src/en/book/ch09-reference.xml
==============================================================================
--- trunk/src/en/book/ch09-reference.xml	(original)
+++ trunk/src/en/book/ch09-reference.xml	Mon Jun 16 14:11:32 2008
@@ -782,7 +782,7 @@
 $ svn add * --force
 A         foo.c
 A         somedir/bar.c
-A         otherdir/docs/baz.doc
+A  (bin)  otherdir/docs/baz.doc
 …
 </screen>
 
@@ -1662,14 +1662,15 @@
           <para>And finally, copy between two URLs:</para>
 
           <screen>
-$ svn copy file:///var/svn/repos/test/far-away file:///var/svn/repos/test/over-there -m "remote copy."
+$ svn copy file:///var/svn/repos/test/far-away \
+           file:///var/svn/repos/test/over-there -m "remote copy."
 
 Committed revision 9.
 </screen>
 
           <screen>
 $ svn copy file:///var/svn/repos/test/trunk \
-    file:///var/svn/repos/test/tags/0.6.32-prerelease -m "tag tree"
+           file:///var/svn/repos/test/tags/0.6.32-prerelease -m "tag tree"
 
 Committed revision 12.
 </screen>
@@ -1686,7 +1687,8 @@
 
           <screen>
 $ svn copy -r 11 file:///var/svn/repos/test/trunk \
-     file:///var/svn/repos/test/tags/0.6.32-prerelease -m "Forgot to tag at rev 11"
+           file:///var/svn/repos/test/tags/0.6.32-prerelease \
+           -m "Forgot to tag at rev 11"
 
 Committed revision 13.
 </screen>
@@ -1789,7 +1791,8 @@
             to supply a log message:</para>
 
           <screen>
-$ svn delete -m "Deleting file 'yourfile'" file:///var/svn/repos/test/yourfile
+$ svn delete -m "Deleting file 'yourfile'" \
+             file:///var/svn/repos/test/yourfile
 
 Committed revision 15.
 </screen>
@@ -2081,7 +2084,8 @@
             notation:</para>
 
           <screen>
-$ svn diff -r 3000:3500 --old http://svn.collab.net/repos/svn/trunk COMMITTERS README HACKING
+$ svn diff -r 3000:3500 --old http://svn.collab.net/repos/svn/trunk \
+           COMMITTERS README HACKING
           </screen>
 
           <para>If you have a working copy, you can obtain the
@@ -2115,7 +2119,8 @@
             revisions, but not the contents of the diff itself:</para>
           
           <screen>
-$ svn diff --summarize --xml http://svn.red-bean.com/repos/test@r2 http://svn.red-bean.com/repos/test
+$ svn diff --summarize --xml http://svn.red-bean.com/repos/test@r2 \
+           http://svn.red-bean.com/repos/test
 <?xml version="1.0"?>
 <diff>
 <paths>
@@ -2390,7 +2395,8 @@
             you.</para>
 
           <screen>
-$ svn import -m "New import" myproj http://svn.red-bean.com/repos/trunk/misc
+$ svn import -m "New import" myproj \
+             http://svn.red-bean.com/repos/trunk/misc
 Adding         myproj/sample.txt
 …
 Transmitting file data .........
@@ -2403,7 +2409,8 @@
             <filename>myproj</filename> to the end of the URL:</para>
 
           <screen>
-$ svn import -m "New import" myproj http://svn.red-bean.com/repos/trunk/misc/myproj
+$ svn import -m "New import" myproj \
+            http://svn.red-bean.com/repos/trunk/misc/myproj
 Adding         myproj/sample.txt
 …
 Transmitting file data .........
@@ -3290,7 +3297,8 @@
             you have an up to date working copy of the trunk).</para>
 
           <screen>
-$ svn merge --reintegrate http://svn.example.com/repos/calc/branches/my-calc-branch
+$ svn merge --reintegrate \
+            http://svn.example.com/repos/calc/branches/my-calc-branch
 --- Merging differences between repository URLs into '.':
 U    button.c
 U    integer.c
@@ -3586,7 +3594,8 @@
 D         foo.c
 </screen>
 
-          <para>Move several files in your working copy into a subdirectory:</para>
+          <para>Move several files in your working copy into a
+            subdirectory:</para>
 
           <screen>
 $ svn move baz.c bat.c qux.c src
@@ -4098,7 +4107,8 @@
             provide a URL:</para>
           
           <screen>
-$ svn propset --revprop -r 26 svn:log "Document nap." http://svn.red-bean.com/repos
+$ svn propset --revprop -r 26 svn:log "Document nap." \
+              http://svn.red-bean.com/repos
 property 'svn:log' set on repository revision '25'
 </screen>
 
@@ -6054,7 +6064,8 @@
           <para>Or if you want to load into a subdirectory:</para>
 
           <screen>
-$ svnadmin load --parent-dir new/subdir/for/project /var/svn/restored < repos-backup
+$ svnadmin load --parent-dir new/subdir/for/project \
+                /var/svn/restored < repos-backup
 <<< Started new txn, based on original revision 1
      * adding path : test ... done.
      * adding path : test/a ... done.
@@ -8839,9 +8850,12 @@
 <Location /svn>
   DAV svn
 
-  # any "/svn/foo" URL will map to a repository in /net/svn.nfs/repositories/foo
+  # any "/svn/foo" URL will map to a repository in 
+  # /net/svn.nfs/repositories/foo
   SVNParentPath         "/net/svn.nfs/repositories"
-  # any "/svn/foo" URL will map to an activities db in /var/db/svn/activities/foo
+
+  # any "/svn/foo" URL will map to an activities db in
+  #  /var/db/svn/activities/foo
   SVNActivitiesDB       "/var/db/svn/activities"
 </Location>
 </screen>




More information about the svnbook-dev mailing list