为什么“git difftool”不是直接打开工具吗?
我像这样配置了 git:
git config --global diff.tool meld
当我运行时:
git difftool
我收到以下消息:
Viewing: 'hello.txt'
Hit return to launch 'meld':
然后,如果我按 Enter,meld
将启动。
如何禁用此消息,以便在输入 git difftool
后立即启动 meld
?
I configured git
like this:
git config --global diff.tool meld
When I run:
git difftool
I get the following message:
Viewing: 'hello.txt'
Hit return to launch 'meld':
Then, if I press Enter, meld
will launch.
How can I disable this message, so that meld
will be launched straight away after typing git difftool
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还有一个选项:
以下命令全局关闭提示(对于所有存储库):
这就像在
~/.gitconfig
中写入:(或在
%HOMEDRIVE%%HOMEPATH%\.gitconfig
中)There's also an option:
The following command turns off the prompt globally (for all repos):
Which is like writing in
~/.gitconfig
:(or in
%HOMEDRIVE%%HOMEPATH%\.gitconfig
)