我如何将自己的差异工具与`add --patch`之类的东西一起使用?

问题描述 投票:0回答:1

我使用名为diffr的非常规差异工具,如下所示:

diffr="diffr \
      --colors removed:background:00:foreground:01 \
      --colors refine-removed:background:0:foreground:124 \
      --colors added:background:0:foreground:10 \
      --colors refine-added:background:0:foreground:35:intense \
      | less -R"

git config --global pager.diff "$diffr"
git config --global pager.show "$diffr"
git config --global pager.log "$diffr"

我的正常工作流程通常在添加和签出代码时也使用--patch--interactive标志。

但是,--patch开关似乎使用默认值(colordiff?)而不是diffr。

在这种情况下(以及我可能没有想到的其他任何工具),我如何强制将diffr作为差异工具?

git git-checkout git-diff git-add git-patch
1个回答
0
投票

有时候,找到答案所要做的就是问问题。

解决方案是:

git config --global interactive.diffFilter "$diffr" 
© www.soinside.com 2019 - 2024. All rights reserved.