From derby-dev-return-3400-apmail-db-derby-dev-archive=db.apache.org@db.apache.org Mon Apr 25 19:43:18 2005 Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 12713 invoked from network); 25 Apr 2005 19:43:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Apr 2005 19:43:18 -0000 Received: (qmail 19687 invoked by uid 500); 25 Apr 2005 19:43:49 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 19662 invoked by uid 500); 25 Apr 2005 19:43:49 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Reply-To: "Derby Development" Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 19649 invoked by uid 99); 25 Apr 2005 19:43:49 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy includes SPF record at spf.trusted-forwarder.org) Received: from smtp816.mail.sc5.yahoo.com (HELO smtp816.mail.sc5.yahoo.com) (66.163.170.2) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 25 Apr 2005 12:43:49 -0700 Received: from unknown (HELO ?192.168.0.4?) (fuzzylogic@sbcglobal.net@68.122.236.231 with plain) by smtp816.mail.sc5.yahoo.com with SMTP; 25 Apr 2005 19:43:13 -0000 Mime-Version: 1.0 (Apple Message framework v622) In-Reply-To: <426C7891.3070302@sbcglobal.net> References: <426C7891.3070302@sbcglobal.net> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Andrew McIntyre Subject: Re: svn command to find difference between trunk and 10.0 branch? Date: Mon, 25 Apr 2005 12:43:09 -0700 To: "Derby Development" X-Mailer: Apple Mail (2.622) X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Apr 24, 2005, at 9:56 PM, Mike Matrigali wrote: > What is the svn command to tell the difference in a file and/or files > between the trunk and the 10.0 branch? Hi Mike, svn diff will take two URLs as the source locations to diff, so you could do: svn diff http://svn.apache.org/repos/asf/incubator/derby/code/trunk/build.xml http://svn.apache.org/repos/asf/incubator/derby/code/branches/10.0/ build.xml to get the difference between the trunk and 10.0's build.xml, for example. andrew