vote up 0 vote down star

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.

flag

3 Answers

vote up 0 vote down check

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.

link|flag
vote up 2 vote down

Vim offers coloration for diff files. If you'd rather go graphical, use MacVim (which is free) or TextMate (not free).

TextMate TextMate

MacVim MacVim

Vim Vim

link|flag
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.