Filip Huhta
Filip Huhta

Reputation: 2368

Is it possible to do git pull request review in Visual Studio 2022 using Azure Devops?

I normally review pull requests in the code editor when I code in Visual studio code. I use GitHub Pull Requests and Issues to review the pull request directly in the editor in Visual Studio Code. I found a thread about this that was several years old with a plugin: Pull Requests for Visual Studio.

I wonder if there is any new solution to this problem like GitHub Pull Requests and Issues? Or if the old plugin for Visual studio 2019 is still the only solution.

Upvotes: 2

Views: 5299

Answers (1)

Bowman Zhu
Bowman Zhu

Reputation: 7146

I wonder if there is any new solution to this problem like GitHub Pull Requests and Issues? Or if the old plugin for Visual studio 2019 is still the only solution.

Yes, it is still the only solution to review the pull requests in VS now.

If you don't need to check those pull requests inside the VS tool. There is a extension for VS2022:

https://marketplace.visualstudio.com/items?itemName=GitHub.GitHubExtensionforVisualStudio&ssr=false#overview

This extension should be installed by default.

You can create and review pull requests via this button:

enter image description here

But it will not 'inside' the VS.

If you need the extension 'Pull Requests for Visual Studio' for VS2022, please upvote the suggestion ticket here and share your ideas.

Upvotes: 1

Related Questions