all - ¿Por qué "git difftool" no abre la herramienta directamente?
git meld (2)
Configuré git
así:
git config --global diff.tool meld
Cuando corro:
git difftool
Recibo el siguiente mensaje:
Viewing: ''hello.txt''
Hit return to launch ''meld'':
Luego, si presiono Enter , se iniciará meld
.
¿Cómo puedo deshabilitar este mensaje, para que la meld
se inicie enseguida después de escribir git difftool
?
También hay una opción:
difftool.prompt
Prompt before each invocation of the diff tool.
El siguiente comando desactiva la solicitud global (para todas las reposiciones):
git config --global difftool.prompt false
Es como escribir (en ~/.gitconfig
o %HOMEDRIVE%%HOMEPATH%/.gitconfig
)
[difftool]
prompt = false
man git-difftool
OPTIONS
-y, --no-prompt
Do not prompt before launching a diff tool.