Reputation: 4232
Hi i new for VScode and for view remote changes on git before pull request is there any way? ,I found Git History extension but which is for local changes only. not compare remote and local files ,Can some one suggest me please.
Upvotes: 2
Views: 3162
Reputation: 1327384
You can compare branches (including remote tracking ones) with the VSCode plugin Git Lens, as shown here.
But, if you want to compare incoming pull requests, don't forget to add refs/pull rules, in order to VSCode to fetch said PR, and for you to compare them with your branch.
Upvotes: 5