Overview
- Open Pull Requests.
- Select New Pull Request.
- Set base to main.
- Set compare to development.
- Review the displayed differences.
- Add a title and description.
- Create the pull request.
- Review Conversation, Commits, and Files changed.
- Merge and confirm when approved.
Updating a local repository after a remote change:
Option A: separate inspection and integration.
git fetch
Then merge the fetched remote changes into the intended local branch.
Option B: immediate combined update.
git pull