1

Sorry this may be a duplicate but I'm having real trouble trying to find the right answer.

Originally I did a fork of https://github.com/Athou/GeekBot

This created https://github.com/david99world/GeekBot

How do I "update" my branch so it's the same as the base revision, similar to a merge up in SVN? Sorry, this is probably very simple but I'm very new to GIT, is it possible to do this within Eclipse using egit?

Thanks,

2 Answers 2

1

If you want a specific revision, then you just need to do:

git checkout <revision>

If you're familiar with svn, I've found this web page helpful.

Update:

If you want the latest revision, do:

git pull <origin> <branch>
3
  • ah, no, sorry I know how to do a checkout (that's about as far as my knowledge goes with GIT, but I want to update my branch so it's as up to date as the base revision)
    – David
    Feb 13, 2012 at 18:44
  • Ah, so to update my branch I'd do "git pull github.com/Athou/GeekBot.git [email protected]/david99world/GeekBot.git" does that sound right?
    – David
    Feb 13, 2012 at 20:12
  • I get fatal: Couldn't find remote ref https
    – David
    Feb 13, 2012 at 20:14
1

See Pull in upstream changes in http://help.github.com/fork-a-repo/

2
  • Hi, I did this and now it just replies "Already up-to-date", the first time it did lots of changes so I assume it worked, but the files have stayed the same when I compare them by hand to the changes on github on the original repo
    – David
    Feb 13, 2012 at 20:24
  • git fetch does only fetch the changes but does not apply them so they won't be directly visible. A git merge needs to follow to see the changes in your current branch. In between the two steps you could, in theory, look at the changes before deciding whether to apply them or not. Feb 13, 2012 at 22:50

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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