Questions tagged [beyondcompare4]

Beyond Compare is a data comparison utility. Aside from comparing files, the program is capable of doing side-by-side comparison of directories, FTP and SFTP directories, Dropbox directories, Amazon S3 directories, and archives.[1] It is available for Windows, Mac OS, and Linux operating systems. A strength of Beyond Compare is that it can be configured as difftool and mergetool of version control systems, such as git.

Beyond Compare 4 is a data comparison utility of Scooter Software, Inc.

The programm is capable of doing

  • side-by-side file comparison with special comparison view for tables (csv, Excel) and pictures.
  • side-by-side comparison of directories, FTP and SFTP directories, Dropbox directories, Amazon S3 directories, and archives.
  • 3-way file and directory merging.

It is available for Windows, Mac OS, and Linux operating systems.

A strength of Beyond Compare is that it can be configured as difftool and mergetool of version control systems, such as git.

See also:

94 questions
1
vote
1 answer

Beyond compare in command line

I'm using Beyond Compare 4 from the command line to compare to files, which generates output report with differences. But, I'm not able to display the line numbers of differences. I used following script: file-report layout:side-by-side…
1
vote
1 answer

Ignore non UTF-8 characters in Beyond Compare

My project include some units of measurement that are expressed with non UTF-8 characters like the squared symbol. With most editors these are displayed with the following character: �. I am comparing parts of the source code with beyond compare…
Manfredo
  • 1,760
  • 4
  • 25
  • 53
1
vote
0 answers

Can I share beyondCompare setting between machines?

On my linux machine beyondCompare's settings are stored in ~/.config/bcompare. I would like to share these between my different machines. Can I: Create a git repo in ~/repos/bcompareSettings Move the contents of ~/.config/bcompare to…
sixtyfootersdude
  • 25,859
  • 43
  • 145
  • 213
1
vote
1 answer

Comparing two files using BeyondCompare - check for content

I have two text files containing many lines of data (they are just some linux paths). The order of the paths are different in both files. I need Beyond Compare to compare the files based on content. Right now, it is checking line by line and…
Müller
  • 973
  • 6
  • 19
  • 38
1
vote
1 answer

How do I get Beyond Compare to Ignore non text characters

My problem is twofold. I'm using Beyond Compare integrated with Visual Studio 2015 as my Compare/Merge tool. While looking at my list of 'Pending Changes', I see a file which if I 'Right Click -> Source Control -> Compare with Latest Version', I can…
Ash
  • 5,786
  • 5
  • 22
  • 42
1
vote
1 answer

Beyond Compare 4 ignore a line in all files if certain text occure in a line

In Beyond Compare 4 how can one ignore a line as unimportant line in all files if certain text occure in this line ? E.g. File1: I am master I live with family Fear is common I mean simple 1179 File2: I am MASTER 1179 I live alone Fear is COMMON…
James Bond
  • 2,825
  • 2
  • 15
  • 11
1
vote
1 answer

BeyondCompare: Compare Contents not changing color to black when files match

I just purchased the pro version of Beyond Compare 4 for Windows. I'm using it to compare a Windows folder to a folder on a Linux machine using SFTP. When I select all of the files and do a 'Compare Contents', I wold expect the color to change to…
Dwayne Driskill
  • 1,470
  • 1
  • 13
  • 19
1
vote
1 answer

How to report only differences in RIGHT SIDE text comparison with Beyond Compare?

I am using Beyond Compare 4 to compare 2 text files. I run BCompare.exe in the Windows command line and run this script: # Script.txt select right.diff text-report layout:side-by-side options:display-mismatches output-to:"%3" "%1" "%2" My layout…
Kangze Huang
  • 351
  • 7
  • 22
1
vote
0 answers

svn diff not working for specific revision number

Below svn diff between head and working copy is fine svn diff --diff-cmd=/usr/bin/meld ./path1/file1.cpp But when I try to compare any remote file then it's just not showing anything svn diff -r head:prev --diff-cmd=/usr/bin/meld…
Vivek Kumar
  • 4,822
  • 8
  • 51
  • 85
1
vote
2 answers

Beyond Compare 4: How to show only lines containing a specific string?

I am trying to compare two log files containing a list of transactions. The fields of these transactions are defined within the line itself. eg: transactionID: 1, transactionType: 6, transactionData: 123456 transactionID: 2, transactionType:…
omouri
  • 15
  • 1
  • 6
1
vote
1 answer

Beyond Compare - Finding number of line differences rather than byte differences when using Folder Compare

So I am using Beyond Compare 4.0.7 and am comparing two folders containing different versions of a Java project. I want to find how many lines have been changed to class files in the newest project. So I filter by *.class files, view differences…
1
vote
2 answers

Why is BeyondCompare 4 / Git trying to perform a text diff on binary files?

I'm trying to merge a branch which has a different .NET .dll and .pdb, and git/BC4 is trying to do a text merge on the files instead of letting me choose local vs remote. I've never experienced this before, presumably I have changed some setting or…
Andrew Bullock
  • 36,616
  • 34
  • 155
  • 231
0
votes
0 answers

Unable to Copy Changes Back Using git-difftool with Beyond Compare 4/Meld

I have been using git-difftool along with Beyond Compare 4 and Meld to review and revert changes in the working directory. While this process works smoothly for most files, I have encountered an issue where certain files do not have their changes…
0
votes
1 answer

Beyond Compare, special marker for expected diff lines in a file

How can one create a section of a file thats always expected to be different? Sample jenkinsfile (basically javascript): //!beyond-comp:ignorediff //!beyond-comp:ignorediff-end Sample CMD script: REM!beyond-compare:ignorediff set…
enorl76
  • 2,562
  • 1
  • 25
  • 38
0
votes
1 answer

Unable to launch a Program using Powershell

I am trying to launch a program 'Beyond Compare' using the PowerShell command process=Start-Process -FilePath "C:\Program Files\Beyond Compare 4\BCompare.exe" This works perfectly fine when I use it in Powershell. However, the same does not work…