[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] more small subcommands being used

From: Larry Shatzer <fugazi_at_zyx.net>
Date: 2003-02-25 02:00:26 CET

Here is a new batch of more fixes where small commands were used in place of
their proper longer counterparts. I did notice quite a few listed in appa.xml,
but seeing as how the top says it is in flux, I decided to leave those alone. I
can provide a patch for it if you like.

Also, a side note, in the example output for svn diff, it does not show the line
containing (revision ####) or (working copy).

Log message: Use log subcommand names.

Index: doc/book/book/ch04.xml
===================================================================
--- doc/book/book/ch04.xml (revision 5076)
+++ doc/book/book/ch04.xml (working copy)
@@ -1071,7 +1071,7 @@
         of the software that won't change much:</para>
 
 <screen>
-$ svn cp http://svn.example.com/repos/trunk/calc \
+$ svn copy http://svn.example.com/repos/trunk/calc \
          http://svn.example.com/branches/calc/stable-1.0
          -m "Creating stable branch of calc project."
 
Index: doc/book/book/ch06.xml
===================================================================
--- doc/book/book/ch06.xml (revision 5076)
+++ doc/book/book/ch06.xml (working copy)
@@ -769,7 +769,7 @@
           </footnote></para>
 
         <screen>
-$ svn pset svn:log '* button.c: Fix a compiler warning.' -r11 --revprop
+$ svn propset svn:log '* button.c: Fix a compiler warning.' -r11 --revprop
 property `status' set on repository revision '11'
 $
 </screen>
@@ -827,7 +827,7 @@
           state.</para>
  
         <screen>
-% svn up calc
+% svn update calc
 M calc/Makefile.in
  C calc/button.c
 Updated to revision 143.
@@ -845,7 +845,7 @@
           commit your local modifications will fail.</para>
 
         <screen>
-$ svn st calc
+$ svn status calc
  C calc/button.c
 ? calc/button.c.prej
 $ cat calc/button.c.prej
@@ -1061,7 +1061,7 @@
             <command>svn propset</command> command:</para>
        
           <screen>
-$ svn pset svn:ignore -F .cvsignore .
+$ svn propset svn:ignore -F .cvsignore .
 property `svn:ignore' set on '.'
 $
 </screen>
Index: doc/book/book/ch08.xml
===================================================================
--- doc/book/book/ch08.xml (revision 5076)
+++ doc/book/book/ch08.xml (working copy)
@@ -2041,7 +2041,7 @@
             <para>Move a file in your working copy:</para>
 
             <screen>
-$ svn mv foo.c bar.c
+$ svn move foo.c bar.c
 A bar.c
 D foo.c
             </screen>
@@ -2050,7 +2050,7 @@
               so it requires a commit message): </para>
 
             <screen>
-$ svn mv -m "Move a file" http://svn.red-bean.com/repos/foo.c http://svn.red-bean.com/repos/bar.c
+$ svn move -m "Move a file" http://svn.red-bean.com/repos/foo.c http://svn.red-bean.com/repos/bar.c
 
 Committed revision 27.
             </screen>
@@ -2129,7 +2129,7 @@
               executable permission set:</para>
 
             <screen>
-$ svn ps svn:executable ON somescript
+$ svn propset svn:executable ON somescript
 property `svn:executable' set on 'somescript'
             </screen>
 
@@ -2608,7 +2608,7 @@
               copy will sprout three new files:</para>
 
             <screen>
-$ svn up
+$ svn update
 C foo.c
 Updated to revision 31.
 $ ls
@@ -3130,7 +3130,7 @@
               your last update:</para>
 
             <screen>
-$ svn up
+$ svn update
 A newdir/toggle.c
 A newdir/disclose.c
 A newdir/launch.c
@@ -3144,7 +3144,7 @@
               linkend="svn-ap-a"/>):</para>
 
             <screen>
-svn up -r30
+svn update -r30
 A newdir/README
 D newdir/toggle.c
 D newdir/disclose.c

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Feb 25 02:01:46 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.