On a sever I'm working on, the git diff
behavior has been customized via some lines in $HOME/.gitconfig
[diff]
renamelimit = 2093
guitool = diffmerge
external = $HOME/git-diff-wrapper.sh
submodule = log
But, in some one-off runs of git add
I need the normal default behavior. How do I specify options at the command line to temporarily restore the default behavior, i.e. what do I put after the =
s?
git -c diff.guitool= -c external= diff
I tried blanks and ''
and it doesn't seem to work. It might have to do with that external
is not (or no longer) a documented valid option.