tags:

views:

118

answers:

3

Hi

I have a .diff file but I don't know how to open it. I trie using FileMerge but that doesn't give me an option to open a .diff file.

Any ideas? Thanks.

+2  A: 

Use patch from the command line, like you would on a Linux box.

patch original_file.c diff_file.diff

Edit:
I'm assuming that with "open" you mean to apply the diff file to the original. If you just want to take a look at the file, see Chris' answer.

Pascal
A: 

Diffs are just plain text. You should be able to open it with TextEdit or any other text editor. If you want syntax highlighting probably many of the fancier editors could do that. I just used Aquamacs Emacs to load a diff file and it provided some highlighting.

And if you want to ‘apply’ the diff to a file, use the patch command, like in SanHolo's answer.

Chris Johnsen
+2  A: 
Loïc Wolff