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
You need to basically create a new branch & cherry-pick the commits you want to add to it.
Note: you might need these before the checkout/cherry-pick commands
git remote add upstream
git remote update
git checkout -b upstream/master
git cherry-pick
git push origin
Afterwards, you will see branch on github, switch to it and can submit the pull request with the changes you want.