为什么“git difftool”不能直接打开工具?
我这样configurationgit
:
git config --global diff.tool meld
当我运行:
git difftool
我收到以下消息:
Viewing: 'hello.txt' Hit return to launch 'meld':
那么,如果我按回车 , meld
将启动。
我怎么能禁用这个消息,所以meld
后会打字git difftool
直接git difftool
?
man git-difftool OPTIONS -y, --no-prompt Do not prompt before launching a diff tool.
还有一个select:
difftool.prompt Prompt before each invocation of the diff tool.
以下命令全局closures提示(适用于所有回购):
git config --global difftool.prompt false
这就像编写(在~/.gitconfig
或%HOMEDRIVE%%HOMEPATH%\.gitconfig
)
[difftool] prompt = false