Skip to content

Instantly share code, notes, and snippets.

@hokein
Created November 16, 2013 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hokein/7495341 to your computer and use it in GitHub Desktop.
Save hokein/7495341 to your computer and use it in GitHub Desktop.
unversion svn files.
#for a in `find -name "$1"`
#for a in `find . -type d -name ".*"`
for a in `find . -type f -name ".*"`
do
echo "running: svn rm --keep-local $a"
svn rm --keep-local $a
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment