Say there is a project “A” in github. I forked off Project B (A->B) that I’m working on.
Someone created project C from A (A->C). There are some pull requests made from C to A, but it has not been merged yet.
How can I merge C’s changes to mine (B) ?
I do have C’s commit hash.
You can either ask the owner of
Cto send you a pull request, or easier yet, you can add his repository as remote, fetch his branches and merge all you want.In short, for example:
A Github tutorial is available also.