Re: command line syntax for svn diff

2018-04-28 Thread Bo Berglund
On Sat, 28 Apr 2018 07:57:16 +, Arwin Arni Nandagopal wrote: >You'll have to see the documentation for that tool (WinMerge in your case). THanks, I ended up writing a batch file in a folder on path using svn cat to get a temp copy of the previous revision to compare against: @ECHO OFF SET W

Re: command line syntax for svn diff

2018-04-28 Thread Arwin Arni Nandagopal
eople in GUI land do.. Arwin From: Bo Berglund Sent: Saturday, 28 April, 13:10 Subject: Re: command line syntax for svn diff To: users@subversion.apache.org On Sat, 28 Apr 2018 06:39:24 +, Arwin Arni Nandagopal wrote: >There are revision keywords like HEAD which references the latest re

Re: command line syntax for svn diff

2018-04-28 Thread Bo Berglund
On Sat, 28 Apr 2018 06:39:24 +, Arwin Arni Nandagopal wrote: >There are revision keywords like HEAD which references the latest revision >and PREV which references the last changed revision of the target. >E.g: SVN diff -rHEAD:PREV target.file will show the changes between the last >change

Re: command line syntax for svn diff

2018-04-27 Thread Arwin Arni Nandagopal
There are revision keywords like HEAD which references the latest revision and PREV which references the last changed revision of the target. E.g: SVN diff -rHEAD:PREV target.file will show the changes between the last changed revision for that file and the latest revision, which is effectively