为什么“ git ddtool”不直接打开工具?

我像这样配置了 git:

git config --global diff.tool meld

当我跑步的时候:

git difftool

我得到了如下信息:

Viewing: 'hello.txt'
Hit return to launch 'meld':

然后,如果我按 Entermeld将启动。

如何禁用此消息,以便在键入 git difftool后立即启动 meld

42064 次浏览
man git-difftool


OPTIONS
-y, --no-prompt
Do not prompt before launching a diff tool.

还有一个选择:

difftool.prompt
Prompt before each invocation of the diff tool.

下面的命令在全局范围内关闭提示符(对于所有回购协议) :

git config --global difftool.prompt false

这就像在 ~/.gitconfig中写道:
(或在 %HOMEDRIVE%%HOMEPATH%\.gitconfig)

[difftool]
prompt = false