On Wed, Dec 16, 2009 at 11:46 PM, Jay Soffian <jaysoffian@xxxxxxxxx> wrote: > % cat .git/info/attributes > *.xib diff=xibdiff > % cat $(git config diff.xibdiff.command) > #!/bin/sh > trap "rm -f \"$2.tmp\" \"$5.tmp\"" 0 1 2 3 15 > ibtool --all "$2" > "$2".tmp > ibtool --all "$5" > "$5".tmp > colordiff -u "$2.tmp" "$5.tmp" > > Works great for things like: > > % git diff <commit1> <commit2> -- /path/to/*.xib > > But is apparently ignored by "git log -p" and "git show" which just > use internal diff. Is this behavior intentional? Ah, --ext-diff, and the reasoning behind requiring it for log/show is explained in 72909be. j. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html