From users-return-5512-daniel=haxx.se@subversion.apache.org Wed Oct 20 15:41:10 2010 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on giant.haxx.se X-Spam-Level: X-Spam-Status: No, score=-1.5 required=3.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID,T_RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by giant.haxx.se (8.14.3/8.14.3/Debian-9.1) with SMTP id o9KDf8Vv018521 for ; Wed, 20 Oct 2010 15:41:09 +0200 Received: (qmail 73089 invoked by uid 500); 20 Oct 2010 13:40:58 -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 73082 invoked by uid 99); 20 Oct 2010 13:40:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 13:40:58 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS Received-SPF: pass (nike.apache.org: domain of andy.levy@gmail.com designates 209.85.161.43 as permitted sender) Received: from [209.85.161.43] (HELO mail-fx0-f43.google.com) (209.85.161.43) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 13:40:52 +0000 Received: by fxm10 with SMTP id 10so2744640fxm.16 for ; Wed, 20 Oct 2010 06:40:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=pHFZTkJqiVUtBO6XMcrs13YzRtImGNvmfYRxefSq0jA=; b=a0sevZ5WQrJ3Loylqc6LJUHHkDJ2sxvHitWv+61JQIPZ0zWVUKj9gMI3jthgkzckOA sCj9EIdo4kNY6xAuv1rLlhia/IBKRCWnB4UKj4oAH28yFuZbwUYRxwWMgH9obNXJ77VZ 36O8GQEv4VQhlgOIFfuhB9cp8d506jxreyid0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=LLOGWaqBg8L+zf8WnoxRCVXBwkmTpX/RmCs9AQsr1CzzL1BqfWPpm39MmbpIHmf9Oc YmcxNasOGzjAolOgLONtRDJCMszlhTq+K0/ogHocf+lzgeE5IK0bm6XOYY9P2G/PUFzL HFdqiiC1R9zGrTDvsACMPAPGdzDlYi2p6/w1E= Received: by 10.239.132.69 with SMTP id 5mr38009hbq.150.1287582031818; Wed, 20 Oct 2010 06:40:31 -0700 (PDT) MIME-Version: 1.0 Received: by 10.239.157.148 with HTTP; Wed, 20 Oct 2010 06:39:51 -0700 (PDT) In-Reply-To: <3473746A3B3FE343B6C2641049DB56D01177AAF5DE@MAILER641.lan.w2k> References: <3473746A3B3FE343B6C2641049DB56D01177AAF5DD@MAILER641.lan.w2k> <3473746A3B3FE343B6C2641049DB56D01177AAF5DE@MAILER641.lan.w2k> From: Andy Levy Date: Wed, 20 Oct 2010 09:39:51 -0400 Message-ID: Subject: Re: can I checkout only a revision files ? To: Andrea Antonio Maleci Cc: "users@subversion.apache.org" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.3.5 (giant.haxx.se [80.67.6.50]); Wed, 20 Oct 2010 15:41:10 +0200 (CEST) X-Friend: Nope On Wed, Oct 20, 2010 at 09:33, Andrea Antonio Maleci w= rote: > It retrieves entire repository at specified revision, not only the modifi= ed one... You cannot check out an individual file. You can update specific files to a particular revision with svn update --revision FILE You can export an individiual file at a particular revision with the same syntax as update (just swap in "export" instead). The output of svn help can be very informative. > -----Original Message----- > From: Andy Levy [mailto:andy.levy@gmail.com] > Sent: mercoled=EC 20 ottobre 2010 15.25 > To: Andrea Antonio Maleci > Cc: users@subversion.apache.org > Subject: Re: can I checkout only a revision files ? > > On Wed, Oct 20, 2010 at 09:17, Andrea Antonio Maleci = wrote: >> Is it possible to checkout only files (not patch, but entire files) from= a >> specific revision ? > > Yes, use the --revision option for svn co. >