How can I enable colored output for OSX diff?

34

7

I need to diff two files (not two versions of the same file, they are however tracked by git, but that is unrelated) and I would like some colored output, how can I achieve that?

$ diff file_1 file_2

1,9d0
< <script ... >
<     // more code
< </script>

$ 

Above code shows me the difference between those files, however without any colors. For longer diffs that is hard to read.


Alternatively, is there a way for git (with which I do have nice color output) to diff two different files (not changes to a file)?

OSX (10.7.5)

miphe

Posted 2013-04-05T09:02:13.117

Reputation: 819

Answers

40

Perl has a a lackluster colordiff wrapper for diff, but I prefer grc (generic colorizer).

With grc (generic colorizer), you can write your own wrappers for different types of commands or inputs (if you like that sort of thing).

Below, grc is running against /var/log/syslog (in the config, this file is set to a certain color scheme), where it highlights processes, pids, IPs and "connect"s.

Of course, it is recommended to use an alias so you don't forget:

alias diff="/usr/bin/grc /usr/bin/diff"

grc running against syslog


If you have git, you may just want to use that, which allows very robust diffing, even across branches.

git diff master:cogs/foo.txt branch:widgets/bar.txt

You do not have to use git diff within a repository, you can use it for just regular files.enter image description here

git diff old.txt new.txt

As always, you can alias diff for ease of use.

alias diff="git diff"

jnovack

Posted 2013-04-05T09:02:13.117

Reputation: 1 266

6yay for git diff – chrismarx – 2015-02-04T19:33:24.133

8git diff should be at the top of your answer! +1 for pointing out that it works even outside of a repository. – Lucio Paiva – 2015-02-07T18:26:17.307

4'git diff' does not work on generic files so aliasing diff to be 'git diff' can be harmful – Anton Chikin – 2015-04-23T23:13:19.097

1This doesn't work for me... echo one > foo; echo two > bar; git diff foo bar produces no output, while diff foo bar produces `1c1

< one

two

` (with proper formatting, of course) – LarsR – 2016-11-23T08:04:13.427

git diff doesn't work for e.g. pipes – Piotr Findeisen – 2018-01-24T15:49:03.197

36

When diffing files I almost always use vim:

vim -d file_1 file_2

It not only uses colours, it lines up the files so it's easier to see lines added/removed.

Philip Kearns

Posted 2013-04-05T09:02:13.117

Reputation: 825

Wow... Vim is a beautiful thing. – Weston Ganger – 2016-05-23T16:30:56.497

@WestonGanger vim is indeed amazing, never ceases to impress me – Philip Kearns – 2016-05-24T08:28:37.893

1vim works on git patch files too (shows colored diff)! – ryanman – 2016-11-16T18:20:49.313

Best solution. Vim allows you to change and compare in real time. Very nice! – Diego Somar – 2020-02-07T18:41:05.387

7

You can get git to diff two different files:

git diff branch1:full/path/to/foo.txt branch2:full/path/to/foo-another.txt

Colin Pickard

Posted 2013-04-05T09:02:13.117

Reputation: 6 774

6

To build on the approved answer: grc works great for this. It is installable with brew and colorizes a number of terminal commands out of the box, diff being one of them. So...

brew install grc

...installs grc to your system. Then you need to set up your aliases, the brew caveat provides a solution. Simply add the following line to your .bashrc or similar.

source "`brew --prefix`/etc/grc.bashrc"

This will currently add the following aliases:

alias colourify="$GRC -es --colour=auto"
alias configure='colourify ./configure'
alias diff='colourify diff'
alias make='colourify make'
alias gcc='colourify gcc'
alias g++='colourify g++'
alias as='colourify as'
alias gas='colourify gas'
alias ld='colourify ld'
alias netstat='colourify netstat'
alias ping='colourify ping'
alias traceroute='colourify /usr/sbin/traceroute'
alias head='colourify head'
alias tail='colourify tail'
alias dig='colourify dig'
alias mount='colourify mount'
alias ps='colourify ps'
alias mtr='colourify mtr'
alias df='colourify df'

Mattias Bäcklund

Posted 2013-04-05T09:02:13.117

Reputation: 61