dotfiles/.local/bin/scripts/git-cdiff

6 lines
159 B
Text
Raw Normal View History

#!/bin/sh
# create a diff of diffs - https://stackoverflow.com/a/23527631
2021-04-11 22:47:51 +02:00
#dif "${@:3}" <(git show $1) <(git show $2)
2021-04-11 22:47:51 +02:00
git range-diff $1~..$1 $2~..$2 "${@:3}"