How to pull in upstream changes into a fork using Mercurial?

Posted by Jon Kruger on Stack Overflow See other posts from Stack Overflow or by Jon Kruger
Published on 2010-04-21T00:31:48Z Indexed on 2010/04/21 0:33 UTC
Read the original article Hit count: 252

Filed under:

I've forked a Mercurial repository, and now I want to pull the changes from the main repository into my fork. If this were git, I would do something like...

git remote add upstream <url>
git pull upstream master

How do I do this sort of thing in Mercurial?

© Stack Overflow or respective owner

Related posts about mercurial