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
You can rewrite this query to:
Let's assume you have two branches, identified by R1
and R2
, be it the name of the branches or the revision number or hash of a changeset in each, or whatnot.
Then you can find the changeset you're looking for as:
hg log --rev "ancestor(R1,R2)"