Closed
Description
From Pull Request (Step 9)
It is also frequently necessary to synchronize your Pull Request with other changes that have landed in master by using git rebase:
$ git fetch --all
$ git rebase origin/master
$ git push --force-with-lease origin my-branch
Why is it git rebase origin/master
and not git rebase upstream/master
?