Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9CB4E200AC6 for ; Sat, 7 May 2016 03:20:11 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9B3F7160A0D; Sat, 7 May 2016 01:20:11 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E4147160A0C for ; Sat, 7 May 2016 03:20:10 +0200 (CEST) Received: (qmail 63311 invoked by uid 500); 7 May 2016 01:20:10 -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 63297 invoked by uid 99); 7 May 2016 01:20:09 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 May 2016 01:20:09 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 6ACB2C02AD; Sat, 7 May 2016 01:20:09 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.279 X-Spam-Level: X-Spam-Status: No, score=0.279 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id VlpxOUfXEZ-y; Sat, 7 May 2016 01:20:06 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.28]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with ESMTPS id C293C5F5A4; Sat, 7 May 2016 01:20:04 +0000 (UTC) Received: from [67.198.113.253] (helo=poppins.internal.rootmac.net) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.84) (envelope-from ) id 1ayquZ-0008Dn-4F; Sat, 07 May 2016 03:20:03 +0200 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Blank lines From: Ryan Schmidt In-Reply-To: <1581543654.58601.1462482735860.JavaMail.yahoo@mail.yahoo.com> Date: Fri, 6 May 2016 20:20:01 -0500 Cc: =?utf-8?Q?Branko_=C4=8Cibej?= , Subversion Users Content-Transfer-Encoding: quoted-printable Message-Id: <4A5B6683-E5AF-4EB9-A201-8845DDBBBC4C@ryandesign.com> References: <572AB776.7040302@apache.org> <1581543654.58601.1462482735860.JavaMail.yahoo@mail.yahoo.com> To: webster.brent@rogers.com X-Mailer: Apple Mail (2.3124) X-Df-Sender: MzY4ODE4 archived-at: Sat, 07 May 2016 01:20:11 -0000 On May 5, 2016, at 4:12 PM, webster.brent@rogers.com wrote: >=20 > From: Branko =C4=8Cibej >=20 >> Not 'status' -- 'svn status' should always show what 'svn commit' = will >> send to the server. But 'diff', I agree, could be smarter. For = example, >> right now, 'svn diff --summarize -x -w' will mention files that = contain >> only whitespace changes, even though 'svn diff -x -w' will show an = empty >> diff for those files. >=20 > You should wrapper the diff command >=20 > svn diff --diff-cmd 'diff -x -w' Not quite. --diff-cmd is for specifying the name of the diff program to run, e.g. = diff. If you want to name a diff program whose path or name contains = spaces, then you have to quote it, but that would be unusual. svn diff --diff-cmd '/path with spaces/to/diff' -x is for specifying the arguments to pass to that diff program, e.g. = -w. If you want to pass multiple arguments to the diff program, you have = to quote them. svn diff --diff-cmd diff -x '-u -w'