Delete unversioned and ignored files from SVN


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. svn status --no-ignore | egrep '^[?I]' | cut -c9- | sudo xargs -d \\n rm -r

URL: http://stackoverflow.com/questions/239340/automatically-remove-subversion-unversioned-files

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.