Home > Software engineering >  Visual Studio Code: Review Merge Changes Side by Side, rather than top down
Visual Studio Code: Review Merge Changes Side by Side, rather than top down

Time:10-20

Is there any way to compare file changes in Visual Studio Code Side By Side, rather than top down? Regular Visual Studio Enterprise has this option.

This is during git merge conflict resolution.

enter image description here

CodePudding user response:

By default, you see all conflicts "top down", but for each one, clicking on "compare changes" would open a tab with a side-by-side diff.

https://cloud.githubusercontent.com/assets/1926584/26586117/7e70828a-454e-11e7-9bb6-67646a20bfe0.gif

(from issue 27562)

Not ideal, but a good workaround.

  • Related