git fetch origin will update your remote branches.
You can update your working copy with the newest changes in master with: git merge remotes/origin/master It is important to remember that unlike other version control systems, your working copy is separate from everyone else's, so simply fetching won't actually change the files you have checked out - you have to merge from the remotes into your working branch. On Jan 3, 2008, at 3:01 PM, Brian May wrote: >>>>>> "John" == John J Foerch <[EMAIL PROTECTED]> writes: > > John> Hope this helps. > > Yes, Thanks. > > How do I pull in the latest updates? > > I tried: > > [EMAIL PROTECTED]:~/tree/conkeror$ git pull > Warning: No merge candidate found because value of config option > "branch.experimental-buffers.merge" does not match any > remote branch fetched. > No changes. > > ...but as far as I can tell it didn't work... > -- > Brian May <[EMAIL PROTECTED]> > _______________________________________________ > Conkeror mailing list > [email protected] > https://www.mozdev.org/mailman/listinfo/conkeror ..[daniel hengeveld].. neoglam.com _______________________________________________ Conkeror mailing list [email protected] https://www.mozdev.org/mailman/listinfo/conkeror
