为什么“git difftool”不是直接打开工具吗?

发布于 2024-12-11 19:10:43 字数 357 浏览 0 评论 0原文

我像这样配置了 git:

git config --global diff.tool meld

当我运行时:

git difftool

我收到以下消息:

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

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

如何禁用此消息,以便在输入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稚气少女 2024-12-18 19:10:43

还有一个选项:

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

以下命令全局关闭提示(对于所有存储库):

git config --global difftool.prompt false

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

[difftool]
  prompt = false

There's also an option:

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

The following command turns off the prompt globally (for all repos):

git config --global difftool.prompt false

Which is like writing in ~/.gitconfig:
(or in %HOMEDRIVE%%HOMEPATH%\.gitconfig)

[difftool]
  prompt = false
沙与沫 2024-12-18 19:10:43
man git-difftool

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

OPTIONS
   -y, --no-prompt
       Do not prompt before launching a diff tool.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文