Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I first forked a repo and then made a commit to that forked repo. I then opened a pull request. The pull request listed all the changes I wanted. This was great.

After reviewing my pull request, there were a number of changes that the repo owner wanted me to make before he accepted it. I have made those changes in my fork, now how do I update the pull request with those changes (or is this not how I should handle it?).

Thanks

share|improve this question

2 Answers

up vote 11 down vote accepted

You have done it correctly. The pull request will automatically update. The process is:

  1. Open pull request
  2. Commit changes based on feedback in your local repo
  3. Push to the relevant branch of your fork
share|improve this answer
nice! I was checking everywhere but the actual pull request. its magic, black magic, I will not question it. – stevebot Mar 20 '12 at 16:18

Just push to the branch that the pull request references. As long as the pull request is still open, it should get updated with any added commits automatically.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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