Annoying svn directories… zap them up!
Remove all .svn folders recursively:
[sourcecode]
rm -rf `find . -type d -name .svn`
[/sourcecode]
Some may have _svn folders instead of .svn, so use it accordingly.
[sourcecode]
rm -rf `find . -type d -name .svn`
[/sourcecode]
Some may have _svn folders instead of .svn, so use it accordingly.