From users-return-1339-daniel=haxx.se@subversion.apache.org Tue Mar 2 20:09:32 2010 Return-Path: Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by giant.haxx.se (8.14.3/8.14.3/Debian-9) with SMTP id o22J9U8Z013333 for ; Tue, 2 Mar 2010 20:09:31 +0100 Received: (qmail 32951 invoked by uid 500); 2 Mar 2010 19:09:26 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 32944 invoked by uid 99); 2 Mar 2010 19:09:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Mar 2010 19:09:26 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of qazwart@gmail.com designates 209.85.218.214 as permitted sender) Received: from [209.85.218.214] (HELO mail-bw0-f214.google.com) (209.85.218.214) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Mar 2010 19:09:19 +0000 Received: by bwz6 with SMTP id 6so609413bwz.36 for ; Tue, 02 Mar 2010 11:08:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=7yh47hA2/KcwZ78WxC9p47pR34m6t74XIu9lpQxEnyc=; b=jBIJejZuuBakxMjC6gnZOiQ7if6wj6t6F568gdirRQk/f7C6RMeMOEj09/J0a8RQtK TO9GCF46wne1HRzHwV8pEDfYqipbThGimTwsX5SWIJKSlmSrSBkZD5Fc0cgz8sEtZ54O Wujlru2iMHjDN69FJBv7cTRFpbaM3BT+EDTeA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=jRjtRe3C9wdPUcloMF2VdScz8BF9sZcTBM0qC8p2G7sDK0EdDRsmYYuky6xW9eQOt2 62CJocQXJEwe8Vw7k17MxmpsVmAVRYguGJiLotxaBsbeCSd3IEPrI5BbcITlqwcNk8cr EIx9hnxX3JVlNgx9GK6GivMQs8wRIGsvob2Gk= MIME-Version: 1.0 Received: by 10.204.137.16 with SMTP id u16mr4867934bkt.165.1267556936917; Tue, 02 Mar 2010 11:08:56 -0800 (PST) In-Reply-To: <288417603.3067461267553237807.JavaMail.root@sz0009a.westchester.pa.mail.comcast.net> References: <288417603.3067461267553237807.JavaMail.root@sz0009a.westchester.pa.mail.comcast.net> Date: Tue, 2 Mar 2010 14:08:55 -0500 Message-ID: Subject: Re: svn usage tips From: David Weintraub To: Paul Decker Cc: users@subversion.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Let me get this straight, you're not talking about checking out a single project vs. the whole tree. You're talking about checking out a project, but not the externals directories? You can take a look at several things: * There's an --ignore-externals flag when you do a checkout. This prevents any externals directory from being checked out. * Take a look at the --depth switch. You can checkout a directory, without checking out the sub-directories, then just update the subdirectories you want. (Note: There's a --set-depth flag on the update command to override the setting on the checkout command. (See http://subversion.apache.org/docs/release-notes/1.5.html#sparse-checko= uts for more information on the depth switch.) On Tue, Mar 2, 2010 at 1:07 PM, Paul Decker wrote: > Hi list, > > > > I recently changed jobs and went from a cvs house to a svn house.=A0=A0 T= hey > have many projects and have an extensive shared source base.=A0=A0 I woul= d like > to know if there is a way to setup to check out a list of folders or > files.=A0=A0 In other words, for each project, I want to check out only f= iles > that are directly related to that project rather than evey file which is = in > the shared directory. > > > > ie. > > > > projects\ > > \display > > \display2 > > \display3 > > \comm > > \usb > > \tcp > > \keyboard > > \spi > > \i2c > > \flash > > \eeprom > > > > Some projects use {display, comm, keyboard, spi } while other projects us= e > {display, usb, spi, flash }=A0=A0 currently, the only way of working is t= o check > out all folders. > > > > Is there a better way to work? > > > > thanks, > > Paul > > --=20 David Weintraub qazwart@gmail.com