I forked a project on github and am successfully making changes to my local master and pushing to origin on github. I want to send a pull request, but only want to include t
This almost worked for me:
git checkout -b upstream upstream/master
git cherry-pick
git push origin upstream
The only difference was this:
git push origin upstream:upstream
I needed to change that last line so that git push would make the upstream branch in my GitHub repo so that I could make PR from it.