# First add the upstream remote:
git remote add upstream https://repoA
git fetch upstream
# Merge in upstream changes:
git checkout master
git merge upstream/master
# Resolve conflicts and push:
git push origin master
# Your pull request should automatically update
No comments:
Post a Comment