问题
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?
回答1:
Note that the problem with the confirmation dialog has been fixed in EGit 2.2, which will be released on 2012-12-19, see bug 391377.
In general, it's a good practice to only include the minimally required set of features in the launch configuration. This can be configured in the Plug-ins tab of your launch configuration.
To only include certain features, select features selected below from the Launch with dropdown, check the features which should be included and press on Add Required Plug-ins.
Also, it's useful to work with specific target platforms, see the wiki page or this tutorial.
回答2:
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
回答3:
In Juno:
Windows>Preferences>Install/Update>Uninstall or Update.
Click on plugins you want to remove and click on uninstall
回答4:
Hey I found a very easy way to do it, posting it maybe can help someone:
To uninstall the EGit Plugin do the following:
Help > Eclipse Marketplace... > Installed Tab > EGit > uninstall
回答5:
on mac
mkdir disabled disabled/features disabled/plugins
mv features/*egit* disabled/features/
mv plugins/*jgit* disabled/plugins/
mv plugins/*egit* disabled/plugins
did not solve anything.
After doing that, and after a marketplace-uninstall egit was already to uninstall...
Congrats eGit.
来源:https://stackoverflow.com/questions/13917352/how-can-i-uninstall-egit-feature-from-juno