GitHub - Pull Request (Azure DevOps)

January 13, 2026

This guide shows how to push changes from the feature/script-update-for-multi-regsions branch to the develop branch in Azure DevOps


Step 1: Ensure all the changes are committed to the feature branch.

# Check the current branch
(.venv) coo:~/Documents/DevOps/GCS-Cloud/base$ git branch
  develop
* feature/script-update-for-multi-regsions
  main
  
# Check the status of the local repository
(.venv) coo:~/Documents/DevOps/GCS-Cloud/base$ git status
On branch feature/script-update-for-multi-regsions
nothing to commit, working tree clean

Step 2: Use Azure DevOps Web UI

  1. Go to your Azure DevOps project in the browser.

  2. Navigate to Repos > Branches.

  3. Find your branch feature/script-update-for-multi-regsions.

  4. Click on the "…" (More options) next to it and select “New pull request”.

  5. Configure the pull request direction:

    • Source: feature/script-update-for-multi-regsions
    • Target: develop
  6. Add a title, description (optional but helpful), and click “Create”.

  7. Review and complete the PR when you’re ready (or assign reviewers if required).

  8. Select options and click Complete

  9. Check the status


See also:

GitHub - Create a New Repo

GitHub - Create a New Branch

GitHub - Pull Latest Change

GitHub - Pull Request (Azure DevOps)

GitHub - Chean a Branch

GitHub - Delete a Branch

GitHub - Create a Tag

GitHub - Delete a Tag