views:

11

answers:

1

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 the original source. Its hopelessly annoying!

Please help!

Thanks!

A: 

Open a terminal type cd /path/to/your/project/ and then find . -name .svn -exec rm -rf {} \;

It should remove the binding.

Colin Hebert
Im getting: find: -exec: no terminating ";" or "+"
Svenne
Im pretty sure all .svn files are gone. But Netbeans still keeps the binding... very strange!
Svenne
Try to reload your project.
Colin Hebert