How to remove subversion repository for a specified project from netbeans?

10,818

Solution 1

  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.

Solution 2

Under TEAM menu. Choose DISCONNECT option to disconnect code from SVN

Share:
10,818
Rajat Gupta
Author by

Rajat Gupta

A problem solver &amp; enthusiastic programmer looking out for exciting work opportunities. Highly interested in building Android applications, Web development, &amp; Server side coding involving (sql/ nosql) databases &amp; APIs. I love solving problems, building efficient approaches &amp; algorithms. To describe my strong points, I have pretty decent problem solving skills, fast learner &amp; highly motivated &amp; energetic person! Gained good experience in software development in the past 2 years working on numerous android &amp; web development projects with companies like olready.in, twowaits.com, spactre.com. Selected among Top three finalists for LinkedIn MTV GetAJob Season 4 for Flipkart as Software Developer Intern among 50k candidates.

Updated on June 04, 2022

Comments

  • Rajat Gupta
    Rajat Gupta almost 2 years

    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?