How to do a pull request in GitHub with only the latest commit in the master branch of my forked repository
This answer from a coworker fixed my problem: git checkout -b NEW_BRANCH_NAME LAST_COMMIT_NAME_BEFORE_THE_ONE_WANTED git cherry-pick COMMIT_NAME_WANTED git push origin NEW_BRANCH_NAME Then on GitHub you can do a pull request for the new branch you created. UPDATE I asked and answered this question when I first started working with git. Now that I know more about … Read more