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
This works from Windows 10 command line (used cautiously of course):
for /f %g in ('hg status -un') do @echo %g & @del %g