From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15240 invoked by alias); 1 Jun 2004 21:46:31 -0000 Mailing-List: contact overseers-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: , Sender: overseers-owner@sources.redhat.com Received: (qmail 15227 invoked from network); 1 Jun 2004 21:46:30 -0000 Received: from unknown (HELO ms-dienst.rz.rwth-aachen.de) (134.130.3.130) by sourceware.org with SMTP; 1 Jun 2004 21:46:30 -0000 Received: from r220-1 (r220-1.rz.RWTH-Aachen.DE [134.130.3.31]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HYN00BXVGHHO4@ms-dienst.rz.rwth-aachen.de>; Tue, 01 Jun 2004 23:46:30 +0200 (MEST) Received: from relay.RWTH-Aachen.DE ([134.130.3.1]) by r220-1 (MailMonitor for SMTP v1.2.2 ) ; Tue, 01 Jun 2004 23:46:29 +0200 (MEST) Received: from numa-vi (numa-vi.igpm.RWTH-Aachen.DE [134.130.161.247]) by relay.rwth-aachen.de (8.12.10/8.12.7-1) with ESMTP id i51LkSKp020885; Tue, 01 Jun 2004 23:46:28 +0200 (MEST) Date: Wed, 02 Jun 2004 14:55:00 -0000 From: Volker Reichelt Subject: [www-patch] Change sample rsync command in rsync.html To: gcc-patches@gcc.gnu.org Cc: overseers@gcc.gnu.org Message-id: <200406012146.i51LkSKp020885@relay.rwth-aachen.de> MIME-version: 1.0 Content-type: TEXT/PLAIN; CHARSET=us-ascii Content-transfer-encoding: 7BIT Content-disposition: INLINE X-SW-Source: 2004-q2/txt/msg00473.txt.bz2 The following patch adds three --exclude options to the sample rsync command in rsync.html to make it work with the latest changes of the repository and to reduce unnecessary load. See http://gcc.gnu.org/ml/gcc/2004-06/msg00043.html The patch also wraps the sample commands in blockquotes and removes the leading shell prompt (to match cvs.html). Checked as valid XHTML. Ok to commit? 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 1 Jun 2004 21:33:32 -0000 @@ -26,10 +26,12 @@ Subsequent synchronizations will be much a smart algorithm to only transfer differences over the network.

Here is how you get a copy of the repository:

-
- % rsync --archive --delete --checksum --compress \
-         --exclude '#cvs.*' rsync://gcc.gnu.org/gcc-cvs gcc-cvs
-
+
+rsync --archive --delete --checksum --compress \
+      --exclude '#cvs.*' --exclude 'CVSROOT/config' \
+      --exclude 'CVSROOT/history' --exclude 'CVSROOT/updatelog' \
+      rsync://gcc.gnu.org/gcc-cvs gcc-cvs
+

The same command can be run periodically to synchronize your copy of the repository.

@@ -41,9 +43,9 @@ including during the initial phase that rsync.samba.org.

To get a list of available rsync targets, run:

-
- % rsync rsync://gcc.gnu.org/
-
+
+rsync rsync://gcc.gnu.org/
+

Other interesting data, such as the GCC ftp directories, is also available.

===================================================================