I\'m working on a live server. I\'ve updated to tip and it\'s caused problems: I need to revert back to a particular changeset (388) where things were OK.
I have no chan
Just use the command below, to get to a revision.
hg revert -r REV
It's conflicting with --all.
To kill all local changes, --all should work.
hg revert --all
Don't use rollback
. It's a irreversible procedure, so should be used with care.
EDIT
You can update with --clean option. That will discard any uncommitted change. And then update to some changeset.