On Thu, Jul 26, 2012 at 11:04:33AM +0200, Kiren Pillay wrote:
> Hi
>
> I'm trying to merge my trunk into my feature branch. I'm coming up with a
> lot of expected tree conflicts (shown below).
>
> Is there an quick/shorthand way to diff this to see the differences between
> the copies?
>
> C
> business_services/main_servlet/src/main/resources/testconfigs/pams.properties
> > local add, incoming add upon merge
>
> Regards
> Kiren
Try a 2-URL diff. See 'svn help diff', synopsis 3:
3. diff OLD-URL[@OLDREV] NEW-URL[@NEWREV]
If you're inside a working copy you can use the ^/ shortcut to save
some typing: svn diff ^/trunk/myfile ^/branches/mybranch/myfile
The ^/ expands to the repository root URL as shown by 'svn info'.