From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12775 invoked by alias); 26 Jan 2006 23:28:17 -0000 Received: (qmail 12765 invoked by uid 22791); 26 Jan 2006 23:28:17 -0000 X-Spam-Check-By: sourceware.org Received: from e6.ny.us.ibm.com (HELO e6.ny.us.ibm.com) (32.97.182.146) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 26 Jan 2006 23:28:15 +0000 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by e6.ny.us.ibm.com (8.12.11/8.12.11) with ESMTP id k0QNSDRx030071 for ; Thu, 26 Jan 2006 18:28:13 -0500 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay02.pok.ibm.com (8.12.10/NCO/VERS6.8) with ESMTP id k0QNSD1s133214 for ; Thu, 26 Jan 2006 18:28:13 -0500 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.12.11/8.13.3) with ESMTP id k0QNSCd2030672 for ; Thu, 26 Jan 2006 18:28:13 -0500 Received: from dufur.beaverton.ibm.com (dufur.beaverton.ibm.com [9.47.22.20]) by d01av04.pok.ibm.com (8.12.11/8.12.11) with ESMTP id k0QNSBtB030608; Thu, 26 Jan 2006 18:28:12 -0500 Subject: Re: using rsync to create local repository From: PAUL GILLIAM Reply-To: pgilliam@us.ibm.com To: Daniel Jacobowitz Cc: jkingdon@engr.sgi.com, gdb-patches@sources.redhat.com In-Reply-To: <20060126205524.GA17357@nevyn.them.org> References: <1138301788.1423.54.camel@dufur.beaverton.ibm.com> <20060126190733.GA13020@nevyn.them.org> <1138308820.1423.59.camel@dufur.beaverton.ibm.com> <20060126205524.GA17357@nevyn.them.org> Content-Type: multipart/mixed; boundary="=-fvzEs1b9FNXnaz3cbiqb" Date: Thu, 26 Jan 2006 23:28:00 -0000 Message-Id: <1138318142.1423.70.camel@dufur.beaverton.ibm.com> Mime-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-01/txt/msg00438.txt.bz2 --=-fvzEs1b9FNXnaz3cbiqb Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 1078 On Thu, 2006-01-26 at 15:55 -0500, Daniel Jacobowitz wrote: > On Thu, Jan 26, 2006 at 12:53:40PM -0800, PAUL GILLIAM wrote: > > On Thu, 2006-01-26 at 14:07 -0500, Daniel Jacobowitz wrote: > > > On Thu, Jan 26, 2006 at 10:56:28AM -0800, PAUL GILLIAM wrote: > > > > I tried a similar thing and it seemed to work: > > > > > > > > rsync --archive --delete --compress --progress \ > > > > --exclude '#cvs.*' --exclude 'CVSROOT/config' \ > > > > --exclude 'CVSROOT/history' --exclude 'CVSROOT/updatelog' \ > > > > rsync://sources.redhat.com/gdb-cvs /home/pgilliam/gdb/gdb-cvs > > > > > > Wrong repository. You want src-cvs, not gdb-cvs, which only has the > > > web pages in it. > > > > > Ahhh. That would explain it. > > > > Would it be useful for me to submit a patch that would add this > > information to one of those web pages? > > I suppose. > Daniel, please try to restrain your enthusiasm 8-) I have attached the patch, OK to commit? -=# Paul #=- PS: It looks like there is no ChangeLog for the web pages, so I did not include an entry for one. --=-fvzEs1b9FNXnaz3cbiqb Content-Disposition: attachment; filename=rsync.patch Content-Type: text/x-patch; name=rsync.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 1171 Index: index.html =================================================================== RCS file: /cvs/gdb/htdocs/current/index.html,v retrieving revision 1.35 diff -a -u -r1.35 index.html --- index.html 2 Nov 2005 21:58:50 -0000 1.35 +++ index.html 26 Jan 2006 23:20:22 -0000 @@ -148,6 +148,21 @@

+

  • CVS via rsync (rarely used):

    + +Under rare circumstances, it is desirable to maintain a local copy of +the complete CVS repository. Anonymous rsync access has +been is available for that purpose. Here is how to get a copy of the +repository, or to synchronize an existing one: + +

    +rsync --archive --delete --compress rsync://sources.redhat.com/src-cvs src-cvs 
    + +You can get rsync or learn more about it from its home page: + rsync.samba.org + +

    +

  • FTP:

    A daily snapshot of the current development sources (Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.

    -

    Last modified 2005-10-25.

    +

    Last modified 2006-01-26.

    --=-fvzEs1b9FNXnaz3cbiqb--