Reputation: 26617
I imported a project into subversion from netbeans now I simply want to undo that action and want the file stored in repository for that specified project alone be removed. How do I have to proceed?
Upvotes: 2
Views: 11214
Reputation: 28885
.svn
folders inside your project. Eclipse has a Team / Disconnect function for this. Maybe Netbeans also support it. If not, you can do it by hand or with a simple shell script.svn delete <url>
) or TortoiseSVN for example.Upvotes: 5