I have a repo (hosted on Github).

There is a fork of my repo. That fork is sometimes updated.

Upon a pull request from their repo to mine, GitHub no longer offers an automatic merge - it seems to me that the two repos have divereged in history.

Am I missing something? The forker has told me that they have pull my most recent changes before performing a pull request.

link|improve this question

71% accept rate
Since this question is not about programming, but the github UI, it belongs on our sister site webapps. Unless your work is secret, you should also include a link to the pull request so that potential answerers can check out the situation. – phihag Feb 16 at 18:49
Oh, thanks for the pointer to webapps, I hadn't seen it. Yes, it is a private repo. – eoinoc Feb 16 at 19:13
feedback

1 Answer

up vote 1 down vote accepted

If you have pushed your most recent changes to github, and the forker has fetched and merged them, and pushed the result back, an automatic merge should be possible. I strongly suspect that one of you left one of these steps out.

You can simply pull the changes in and merge them yourself with:

git pull git://github.com/forker/project.git
link|improve this answer
Wait a second, isn't a pull shorthand for fetch+merge? Why do that extra merge? And thanks for the fix, by the way. – eoinoc Feb 16 at 19:16
1  
@eoinoc Yes, of course it is. I had fetch in a temporary revision, and confused that. Should be fixed by now. It's generally a good idea to fetch, examine the contents of the remote repository, and then merge. – phihag Feb 16 at 19:21
feedback

Your Answer

 
or
required, but never shown

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