If I have a working copy of a Subversion repository, is there a way to delete all unversioned or ignored files in that working copy with a single command or tool? Essential
With powershell:
(svn status --no-ignore) -match '[?]' -replace '^.\s+' | rm
From command line:
powershell -Command "&{(svn status --no-ignore) -match '[?]' -replace '^.\s+' | rm}"