How do I change the git merge tool that SSC opens?

I've set up my database git repo to use Visual Studio Code for merging and diffing. From my git config:
[merge]
	tool = vscode
[mergetool "vscode"]
	cmd = "code --wait "
[diff]
	tool = vscode
[difftool "vscode"]
	cmd = "code --wait --diff  "
But when I click the Merge button in SSC to open the merge tool...



...it just launches KDiff, which is what I initially set up. Why is SSC not honoring my git config settings, and how can I change the tool that is used?
Tagged:

Answers

Sign In or Register to comment.