Copy and paste these give easy commands:
-
Install
colordiff
using Homebrew:brew install colordiff
-
Add function to your
~/.bash_profile
:cat <<EOF >~/.bash_profile function diff { colordiff -u "$@" | less -RF } EOF
-
Change default output colours to match git:
cat <<EOF >~/.colordiffrc newtext=green oldtext=red diffstuff=cyan EOF
-
Reload:
. ~/.bash_profile
-
Profit.
Notes on switches:
-u
indiff
means: unified diff-R
inless
means: show raw escape codes (so we can see the colour)-F
inless
means: quit if entire output fits on one screen
this is super old, but you can actually just use
git diff
on regular old files outside of a repo