This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [www-patch] Change sample rsync command in rsync.html


Since nobody objected Andreas' suggestion

http://gcc.gnu.org/ml/gcc-patches/2004-06/msg00073.html

to also remove the --checksum option, I did so and committed the patch
in the attached version.

Regards,
Volker


Index: rsync.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/rsync.html,v
retrieving revision 1.9
diff -u -p -r1.9 rsync.html
--- rsync.html	14 Jul 2003 19:39:20 -0000	1.9
+++ rsync.html	11 Jun 2004 17:02:34 -0000
@@ -26,10 +26,12 @@ Subsequent synchronizations will be much
 a smart algorithm to only transfer differences over the network.</p>
 
 <p>Here is how you get a copy of the repository:</p>
-<pre>
- % rsync --archive --delete --checksum --compress \
-         --exclude '#cvs.*' rsync://gcc.gnu.org/gcc-cvs gcc-cvs
-</pre>
+<blockquote><pre>
+rsync --archive --delete --compress \
+      --exclude '#cvs.*' --exclude 'CVSROOT/config' \
+      --exclude 'CVSROOT/history' --exclude 'CVSROOT/updatelog' \
+      rsync://gcc.gnu.org/gcc-cvs gcc-cvs
+</pre></blockquote>
 <p>The same command can be run periodically to synchronize your copy of
 the repository.</p>
 
@@ -41,9 +43,9 @@ including during the initial phase that 
 <a href="http://rsync.samba.org";>rsync.samba.org</a>.</p>
 
 <p>To get a list of available rsync targets, run:</p>
-<pre>
- % rsync rsync://gcc.gnu.org/
-</pre>
+<blockquote><pre>
+rsync rsync://gcc.gnu.org/
+</pre></blockquote>
 
 <p>Other interesting data, such as the GCC ftp directories, is also
 available.</p>
===================================================================



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]