Using Git and I want to merge branch lisa into my master branch, like this:
$ git merge lisa
So I opened my repository and then to .git in the Windows Explorer, to reach the .config (Git config file):
[diff]
tool = vscode
[difftool]
prompt = true
[difftool "vscode"]
cmd = \"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"$LOCAL\" \"$REMOTE\" --diff --wait
trustExitCode = false
My issue is that when I write the following command:
git difftool
I see the differences in cmd itself, instead of having vscode launched for editing and merging.
What's the issue here? Why isn't Visual Code launched?
Also tried
git difftool --tool=vscode
but same issue.