Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upGit diff side by side
How to get a side by side diff with git diff or git difftool in the terminal.
Alternative 1
Use icdiff, as instructed on https://blog.scottnonnenberg.com/better-git-configuration/
- install
icdiff(from https://github.com/jeffkaufman/icdiff but ubuntu also has a package) - add to your
~/.gitconfig:
[diff]
tool = icdiff
[difftool]
prompt = false
[difftool "icdiff"]
cmd = /usr/local/bin/icdiff --line-numbers $LOCAL $REMOTE
- use
git difftool ...to use instead ofgit diff, e.g.git difftool masterto compare current branch andmaster.
Example output:
Alternative 2
Requirements:
- sdiff (from diffutils)
- colordiff
Place the following in your PATH (eg ~/bin/diffy):
#!/bin/sh
echo
echo Comparing: "$1 between $3 and $6"
echo
if stty >/dev/null 2>&1; then
pager=${PAGER:-less -r}
else
pager=cat
fi
C=$(stty size | cut -d' ' -f2)
D=$(expr $C / 2)
sdiff -W -w $C "$2" "$5" | colordiff | grep -E "^.{$D} *[|<>] *" -A 10 -B 10 -n | $pager
Then set the environment variable GIT_EXTERNAL_DIFF to point to it.
Example output:
Press h to open a hovercard with more details.

