I\'m a Git user trying to use Mercurial.
Here\'s what happened: I did a hg backout on a changeset I wanted to revert. That created a new head, so hg instruc
hg backout
From git, commands:
git reset --hard # reset to last commit git clean -df # delete untracked files
are equal to
hg update --clean # reset to last commit hg purge # delete untracked files