Git difftool not opening sometimes
问题 I have 2 folders (with different code) with git initialized. But when I do git difftool -t meld one repo is working fine and asking me if I want to open files in meld to compare. The other one just output everything in the console and didn't execute meld. Also both .git/config file is the same (except for the url) Does anyone know why is that? 回答1: If in one repository you're in conflicted state (check by git status ), you need to use mergetool instead, e.g. git mergetool -t meld Related: git