I have forked project at github. I make one commit and pull request it. This commit was approved. Then i make second commit and pull request it too. But in pull request there were 2 commits: my second commit and old commit which was approved. How can i sync my repository and main repository?

Thank you.

link|improve this question

62% accept rate
1  
People could provide a more comprehensive answer here if you were to add links to your github repository and the upstream github repository. (I understand if you're not happy to, of course.) – Mark Longair Mar 24 '11 at 7:02
feedback

1 Answer

up vote 6 down vote accepted

Merge back from the upstream repository, or create the new pull request on a new branch.

Or rebase on top of upstream:

git remote add upstream (url-for-upstream-repository)
git rebase upstream/master
git push -f origin
(do new pull request on website)
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.