From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2950 invoked by alias); 14 Nov 2003 10:21:56 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 2943 invoked from network); 14 Nov 2003 10:21:54 -0000 Received: from unknown (HELO anchor-post-34.mail.demon.net) (194.217.242.92) by sources.redhat.com with SMTP; 14 Nov 2003 10:21:54 -0000 Received: from test.softwire.co.uk ([62.49.203.139] helo=grizzlybear) by anchor-post-34.mail.demon.net with esmtp (Exim 3.35 #1) id 1AKb5O-000DrI-0Y; Fri, 14 Nov 2003 10:21:54 +0000 From: "Rupert Wood" To: "'Bansidhar Arvind Deshpande - CTD, Chennai.'" Cc: Subject: RE: cvs checkout problem. Date: Fri, 14 Nov 2003 10:21:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In-Reply-To: <9F54AA5915501745A385AF7CBDC7E87169846C@HARITHA.ctd.hcltech.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-Id: X-SW-Source: 2003-11/txt/msg00196.txt.bz2 Bansidhar Arvind Deshpande wrote: > I want to checkout my cvs project (project1 ) files of having > tagname "imp" e.g. If i want to check out my latest version of the > same project i do cvs get project1 > To get the tagged version which command should i use. You'd use cvs get -r imp project1 or similar. There's plenty of other options you can use, e.g. cvs -qz9 -d :pserver:anoncvs@subversions.gnu.org:/cvsroot/gcc get -r gcc-3_3-branch -d gcc33 gcc will fetch you a copy of the GCC 3.3 branch into a directory called 'gcc33'. You can get help from cvs itself with cvs --help get or find docs online at http://www.cvshome.org/docs/manual/. Note that your 'get' is an alias for 'checkout' (as is 'co') so that's the command you should look up. We can probably cope with the basic stuff here but if you've got more complex CVS problems you might do better on a CVS mailing list. Good luck, Rup.