J'ai configuré git
comme ceci:
git config --global diff.tool meld
Quand je cours:
git difftool
Je reçois le message suivant:
Viewing: 'hello.txt'
Hit return to launch 'meld':
Ensuite, si je presse Enter, meld
sera lancé.
Comment puis-je désactiver ce message afin que meld
soit lancé immédiatement après avoir tapé git difftool
?
man git-difftool
OPTIONS
-y, --no-Prompt
Do not Prompt before launching a diff tool.
Il y a aussi une option:
difftool.Prompt
Prompt before each invocation of the diff tool.
La commande suivante désactive l'invite de manière globale (pour tous les dépôts):
git config --global difftool.Prompt false
C'est comme écrire (en ~/.gitconfig
ou %HOMEDRIVE%%HOMEPATH%\.gitconfig
)
[difftool]
Prompt = false