Currently, I have VS Code configured to be my git difftool
and git mergetool
My ~\.gitconfig
file looks like this:
[user]
email = [email protected]
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait $MERGED
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
However, when I run git difftool
, it will ask me
Viewing (1/6): 'Repo\directory\someCode.cs'
Launch 'vscode' [Y/n]?
Is there a way to open all diffs at once? It is useful to be able to cycle between files without having to close them.