Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Gists are plain git repositories. You could clone yours, fetch the fork, merge the fork and push. (Although i'm interested in finding about a less CLI way of doing it) – Romain May 21 '12 at 15:34
My question specifically is about merging changes someone made in a forked version of my gist back into my original gist. Can you propose the commands in an answer? – Kevin Bedell May 21 '12 at 15:36

1 Answer

up vote 13 down vote accepted

A gist operates like any other repository. So let's say you've cloned something like git://gist.github.com/2322786.git:

$ git clone git@gist.github.com:2322786.git

(If you just wanted to try this without pushing, you can use git://gist.github.com/2322786.git, which will demonstrate the merge principle and works anonymously, but does not allow you to push.)

And now you want to merge in changes from git://gist.github.com/2661995.git. Add it as an additional remote:

$ git remote add changes git://gist.github.com/2661995.git
$ git fetch changes

And then merge in the changes like this:

$ git merge changes/master

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 push:

$ git push

This would only work if your original clone URL allows writing.

share|improve this answer
2  
You lack the push step. You'll want to clone with a ssh://git@gist.hithub.com/<gist-id>.git URL. – Romain May 21 '12 at 15:37
This does not update the gist as shown on the website - which is what the OP wants to happen. – Romain May 21 '12 at 15:38
Certainly. This was just to illustrate things in a way that would let someone simply copy and paste my examples. You jumped the gun on that second comment a a bit. Take a breather :). – larsks May 21 '12 at 15:38
If you don't include the push, you don't answer the question. If you don't answer the question fully, I take my upvote off ;) – Romain May 21 '12 at 15:39
1  
Umm...you're welcome to take off the upvote? If that matters to you? – larsks May 21 '12 at 15:43
show 3 more comments

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.