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: 279
mercurial
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