I\'ve been dabbling with Mercurial for a short while now, and I\'ve now set up several projects on BitBucket, one forking off of the other.
I\'ve been able to make chang
Here are 3 essential steps:
hg pull -u path_to_parent hg merge hg commit -m"updates from parent"
Or you could install fetch extension that combines all these steps:
hg fetch path_to_parent