Our buildserver has a Mercurial repository. The build cycle starts every hour. Before the cycle starts, any old files have to be deleted: for example, all obj and bin directories created by the previous build.
To accomplish this, I currently delete the checked out files:
- Delete every directory except
.hg - Run
hg pull - Run
hg update --clean
Is there a way to "revert" a Mercurial repository to its "unmodified" state, removing files and directories that are not under version control?