You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The side-by-side diff view of staged & unstaged changes is completely fantastic. I want to use it for all my git diff commands. Frequently I'm diffing against something other than HEAD, though. For example, I'd like to see the equivalent of git diff master in vscode.
I realize that you can set up vscode as a git difftool, but this forces you to view the files one-by-one, rather than en masse.
A way around this would be to support directory diffs. Then I'd be able to run git difftool --dir-diff to see all the diffs at once with vscode.
The side-by-side diff view of staged & unstaged changes is completely fantastic. I want to use it for all my
git diff
commands. Frequently I'm diffing against something other thanHEAD
, though. For example, I'd like to see the equivalent ofgit diff master
in vscode.I realize that you can set up vscode as a git difftool, but this forces you to view the files one-by-one, rather than en masse.
A way around this would be to support directory diffs. Then I'd be able to run
git difftool --dir-diff
to see all the diffs at once with vscode.My
.gitconfig
looks like this:I'm using vscode 1.1.1.
For comparison, the webdiff project does something like this to support running
git webdiff
instead ofgit diff
at the command line. It works great.The text was updated successfully, but these errors were encountered: