From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28634 invoked by alias); 13 Oct 2011 22:44:44 -0000 Received: (qmail 28621 invoked by uid 22791); 13 Oct 2011 22:44:42 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (140.186.70.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 13 Oct 2011 22:44:15 +0000 Received: from ams by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1REU0c-0002fS-CM; Thu, 13 Oct 2011 18:44:14 -0400 Date: Thu, 13 Oct 2011 22:44:00 -0000 Message-Id: From: ams@gnu.org (Alfred M. Szmidt) To: Jan Kratochvil CC: eliz@gnu.org, pmuldoon@redhat.com, joseph@codesourcery.com, gdb@sourceware.org In-reply-to: <20111013222440.GA15789@host1.jankratochvil.net> (message from Jan Kratochvil on Fri, 14 Oct 2011 00:24:41 +0200) Subject: Re: GIT and CVS Reply-to: ams@gnu.org References: <20111013215020.GA13438@host1.jankratochvil.net> <83obxk1r4s.fsf@gnu.org> <20111013222440.GA15789@host1.jankratochvil.net> X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2011-10/txt/msg00093.txt.bz2 (1b) I am not aware how to make CVS repository copy for local use (but there may be some tool). It is just a matter of rsyncing the CVSROOT locally... Something like, rsync --archive --delete --compress --progress \ --exclude '#cvs.*' --exclude 'CVSROOT/config' \ --exclude 'CVSROOT/history' --exclude 'CVSROOT/updatelog' \ rsync://sources.redhat.com/src-cvs /com/cvs/src And in your checkout to update the CVS/Root files: for x in $(find . -name Root); do echo /com/src > $x; done Might work.