Show heads of one branch?
hg heads <branch name>
works on Mercurial 1.5.3.
To get the heads of the current branch you can use:
hg heads .
And to get the number of heads of the current branch (in Bash):
hg heads -q . | wc -l
hg heads <branch name>
works on Mercurial 1.5.3.
To get the heads of the current branch you can use:
hg heads .
And to get the number of heads of the current branch (in Bash):
hg heads -q . | wc -l