powershell -command "(svn status --no-ignore)
| ? {$ _ -match '^ [I \?]'}
| foreach {$ _ -replace '^. \ s +'}
| rm -recurse -force "
powershell -command "(svn status --no-ignore)
| ? {$ _ -match '^ [I \?]' -and $ _ -notmatch '\ .suo $ | \ .user $'}
| foreach {$ _ -replace '^. \ s +'}
| rm -recurse -force "
Source: https://habr.com/ru/post/90925/
All Articles