dotfiles/.local/bin/scripts/git-cdiff
2021-04-11 22:47:51 +02:00

5 lines
159 B
Bash
Executable file

#!/bin/sh
# create a diff of diffs - https://stackoverflow.com/a/23527631
#dif "${@:3}" <(git show $1) <(git show $2)
git range-diff $1~..$1 $2~..$2 "${@:3}"