Is it possible to delete all untracked files from my working directory? Let\'s say I added a bunch of files to my working directory, didn\'t add them via \'hg add\' and now want
The proper way without purge is:
hg st -un0 | xargs -0 rm