Working with pull requests
Pull requests allow you to notify your team members that a new implementation has been completed and must be merged with a specified branch. By using pull requests, members of your team can review your code (by stepping through files and see the modifications that a particular commit introduces), provide review comments on minor issues, and approve or reject those modifications. This is the recommended practice to use when using source control management with Azure DevOps.
You can view the incoming pull requests for a specific repository on Azure DevOps by selecting the Pull requests menu from the Repos hub, as shown in the following screenshot:
You can also filter this list to view only your pull requests or only the Active, Completed, or Abandoned pull requests.
A pull request can be created in different ways, as follows:
- Manually from the Azure DevOps pull request page
- From...