I forked a repository on github. I made some changes and did a pull request.

Now I made some other changes and want to do a new pull request, but on the preview screen before doing the pull request it shows the old commits too (the ones that were already accepted).

How do I select only the latest commit in the master branch of my forked repository so that I can do a pull request with only that commit?

link|improve this question

67% accept rate
2  
possible duplicate of Github pull request without old commits – Talljoe Apr 6 '11 at 3:43
Like the answer found by Talljoe says, either merge the upstream master to your branch or rebase your master on top of the upstream master. – Petri Lehtinen Apr 6 '11 at 6:05
feedback

2 Answers

up vote 4 down vote accepted

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.

link|improve this answer
feedback

You could probably be to put the commits in a separate branch (branching before the first set of commits), assuming they're unrelated to the first commits. Then the separate branch can be the target of the pull request and will only include your second set of commits.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.