From owner-freebsd-questions@FreeBSD.ORG Wed Dec 15 15:09:28 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B3E416A4CE for ; Wed, 15 Dec 2004 15:09:28 +0000 (GMT) Received: from mx05.ms.so-net.ne.jp (mx05.ms.so-net.ne.jp [202.238.82.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23D1B43D5C for ; Wed, 15 Dec 2004 15:09:27 +0000 (GMT) (envelope-from khoyee@tf7.so-net.ne.jp) Received: from [192.168.0.2] (pdd126c.osakac00.ap.so-net.ne.jp [218.221.18.108]) by mx05.ms.so-net.ne.jp with ESMTP id iBFF8m1Y012718; Thu, 16 Dec 2004 00:08:49 +0900 (JST) Message-ID: <41C053DE.9000300@tf7.so-net.ne.jp> Date: Thu, 16 Dec 2004 00:10:22 +0900 From: Choy Kho Yee User-Agent: Mozilla Thunderbird 1.0 (Macintosh/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Giorgos Keramidas References: <41C038CE.5060801@tf7.so-net.ne.jp> <20041215132913.GB51173@orion.daedalusnetworks.priv> In-Reply-To: <20041215132913.GB51173@orion.daedalusnetworks.priv> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: checking out from cvs without cvs info? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 15:09:28 -0000 Giorgos Keramidas wrote: > On 2004-12-15 22:14, Choy Kho Yee wrote: > >>Hi, for a certain reason I need to check out sources for one of my >>programs from the local CVS repository, without the "CVS" folder in >>every directory but just my source files. How can I do that? > > > There are multiple ways to do that. > > 1) Check out as usual, then delete all the CVS/ stuff: > > % cvs -d /cvs/repo checkout module > % find module -type d -name CVS | xargs rm -fr > > 2) Use the `export' command and a specific tag/version: > > % cvs export -rHEAD module > Thanks for the tips. Now I learned one new thing with CVS :) --- Choy Kho Yee