Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I uninstall Egit feature from Juno?

I am trying to run JUnit test for an eclipse plugin I created. However, the confirmation dialogs from the EGit plugin blocks my perspective from loading up, and hence throws an unnecessary exception on my console for JUnit. I tried looking for possibility to uninstall the plugin, but did not see any such option. How can I disable the Egit plugin?

like image 338
Neel Avatar asked Dec 17 '12 15:12

Neel


1 Answers

The plugins are not easy to remove/disable in eclipse. But you can remove jar files of that plugins to remove a plugin.

In Linux or Mac, open the Terminal, and cd to eclipse folder.

mkdir disabled disabled/features disabled/plugins

mv features/*egit* disabled/features/
mv plugins/*jgit* disabled/plugins/
mv plugins/*egit* disabled/plugins

Read more in http://blog.sarathonline.com/2012/05/eclipse-indigo-without-mylyn.html

like image 176
KimKha Avatar answered Sep 22 '22 19:09

KimKha