-
Notifications
You must be signed in to change notification settings - Fork 2.2k
How to keep a pull request up to date
Unknown W. Brackets edited this page Sep 1, 2013
·
5 revisions
Do some work on a branch. When it's done, you'll probably find that you've fallen behind the main code base. Here's how to get it up to date:
git remote add upstream https://github.com/hrydgard/ppsspp.git (if you haven't already)
git fetch upstream
git rebase upstream/master
git submodule update
(fix any conflicts)
git push -f
If you don't have a pull request, make one now. If you had one already, the git push will update it.