do not use git for recursive diff
This commit is contained in:
parent
88aee30ae8
commit
ee0e3d3b8d
1 changed files with 9 additions and 1 deletions
|
@ -10,7 +10,15 @@ function diff {
|
|||
if (( $+commands[colordiff] )); then
|
||||
command diff --unified "$@" | colordiff --difftype diffu
|
||||
elif (( $+commands[git] )); then
|
||||
git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
|
||||
local diffr=0
|
||||
for x; do
|
||||
if [ "$x" = '-r' ]; then diffr=1; fi
|
||||
done
|
||||
if [ $diffr -eq 0 ]; then
|
||||
git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
|
||||
else
|
||||
command diff --unified "$@"
|
||||
fi
|
||||
else
|
||||
command diff --unified "$@"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue