tags:

views:

105

answers:

1

In git, for a given commit X, X^ means the commit prior to X.

Is there an hg equivalent?

+9  A: 

The parentrevspec extension is bundled with mercurial, but extensions are not activated by default. You'll need to edit the exensions section of your hgrc.

[extensions]
parentrevspec =
Justin Love