Having two branches, how can I find the latest revision(s) where the two branches were merged? Is there a standard Mercurial command to do that?
This is the same as ques
In recent versions of Mercurial (>1.7), you can do this with revsets:
hg log -r "max(ancestor(<branch1>, <branch2>))"
The same revset filter also works in the Filter toolbar of TortoiseHg.