netbeans - remove subversion binding on mac os x
Im desperately trying to remove subversion bindings in my netbeans project but I cant work out how to. I've tried to copy the files to another directory but the original svn bindings stays intact from th开发者_StackOverflow中文版e original source. Its hopelessly annoying!
Please help!
Thanks!
Open a terminal type cd /path/to/your/project/
and then find . -name .svn -exec rm -rf {} \;
It should remove the binding.
精彩评论