kostja
kostja

Reputation: 61568

Deleting a project in SVN with Subclipse

I would like to completely remove a project from version control from inside Eclipse using the Subclipse plug-in.

My requirement is similar to the one at this question except that I don't want to keep the local files either.

The Team context menu doesn't offer anything promising.

Upvotes: 5

Views: 6432

Answers (3)

Leo
Leo

Reputation: 141

Go to

Window - Show view - Svn repositories

You can then right click on folders and delete them.

Upvotes: 14

Raghuram
Raghuram

Reputation: 52665

You could delete all the files and folders that you want from Eclipse and then do Team -> Commit... . This will delete the project from Eclipse as well as remove it locally.

Upvotes: 0

Navi
Navi

Reputation: 8756

I am afraid you will have to do this the hard way from the command line. http://svnbook.red-bean.com/en/1.1/re08.html

Upvotes: 3

Related Questions