I have a gist on github that someone forked and made changes to. I like their changes.
Is there any way to merge the changes back into my original gist?
|
I have a gist on github that someone forked and made changes to. I like their changes. Is there any way to merge the changes back into my original gist? |
|||||
|
|
A gist operates like any other repository. So let's say you've cloned something like git://gist.github.com/2322786.git:
(If you just wanted to try this without pushing, you can use And now you want to merge in changes from git://gist.github.com/2661995.git. Add it as an additional remote:
And then merge in the changes like this:
And you should be all set. This should work regardless of whether the new gist was forked from yours at some previous point or is completely unrelated. Taking Romain's comment into account, you would then issue a
This would only work if your original clone URL allows writing. |
|||||||||||||||
|