On Fri, Feb 6, 2009 at 7:52 PM, cheeaun <[email protected]> wrote: > I've forked another repo and learnt how to sync my repo with it. But > after some time, there are other people forking the same project which > results in a lot of fork repos. What I want to do is to sort of > 'pull' (specific commits) from another fork repo, instead of the > original repo?
Do something like this: git add remote foobar git://github.com/foobar/baz.git git fetch foobar At this point, you'll have their code saved in your local repository in a remote branch; you can refer to it as "foobar/branchname". You'll probably want to checkout a local branch based on foobar/branchname, then figure out what you want to do relative to your own code (merge, or cherry-pick). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
