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?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted
  1. Delete all .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.
  2. With a repository browser delete the project's folder from SVN. I don't know that Netbeans supports it or not. If not, you can use the command line svn client (svn delete <url>) or TortoiseSVN for example.
link|improve this answer
Thanks a lot palacsint. Since you also answered my recent question stackoverflow.com/questions/7548008/… , could you clarify if I can anyhow merge my new maven project in subversion with the old project so that I can keep track of my older versions in subversion repositories in the new project – user Sep 26 '11 at 4:53
I've edited my answer there I hope its help. – palacsint Sep 26 '11 at 6:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.