Which files changed on my feature branch?:
hg status --rev .:develop
Which commits belong to a named branch?:
hg log -r "branch(<branchname>) and 0:"
What heads exist on the current repository that have not been merged into the develop
branch?:
hg log -r "head() & !ancestors(develop)"