Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use svn with beyond compare 3

Tags:

I want to use svn command line with beyond compare and get the following output

Text Compare
Produced: 11/16/2008 11:45:34 AM

SourceFile,CompareFile,IOriginal,IAdded,IDeleted,IChanged,UOriginal,UAdded,UDeleted,UChanged
"E:\Downloads\eeli\eel\1.c","E:\Downloads\eeli\eel\2.c",967,192,501,270,368,113,205,89

What is the exact commandline?

like image 892
R.D Avatar asked Nov 16 '08 19:11

R.D


People also ask

How do you merge files using Beyond Compare?

In the Actions menu, the Merge command performs a merge of the selected files and folders. If a folder is selected, only its filtered contents will be merged (same as if the folder was expanded and all visible contents selected).

How do I add Beyond Compare to perforce?

In Beyond Compare Pro, open Tools | Source Control Integration. Click the Browse button and select the working folder for your Perforce workspace. Click Add and fill in your Perforce connection information.


2 Answers

All the Beyond Compare settings for different version control systems are outlined here: http://www.scootersoftware.com/download.php?c=kb_vcs

For TortoiseSVN try http://www.scootersoftware.com/support.php?zz=kb_vcs#tortoisesvn

like image 142
Matthew Lock Avatar answered Dec 15 '22 07:12

Matthew Lock


Put this in (for example) c:\bin\bcsvn.bat

@REM To configure this as the Subversion diff command, add these lines to
@REM    c:\Documents and Settings\username\Application Data\Subversion\config:
@REM
@REM [helpers]
@REM diff-cmd = c:\bin\bcsvn.bat
@REM
@"C:\Progra~1\Beyond~1\bcomp.exe" "%6" /title1=%3 "%7" /title2=%5
@exit 0

You'll might have to fix up the path to bcomp.exe.

like image 25
Ned Batchelder Avatar answered Dec 15 '22 09:12

Ned Batchelder