I have configured my Git difftool to be VS Code:
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --new-window --diff $LOCAL $REMOTE
prompt = false
This works fine, but when there are multiple files to diff, they get opened one by one (VS Code launches with a single file diff, I close VS Code, the next file diff opens, etc).
Is there a way to configure Git so that all diffs are opened at once in the same VS Code instance?