How to remove EGIT from Eclipse Kepler?

两盒软妹~` 提交于 2019-11-27 13:33:22

问题


I'm using the J2EE bundle of Eclipse Kepler, and I'm working with Git.

I'm also using git-extension as a UI to git, and I wouldn't trade it for anything else, so for me egit is just an annoyance that brings information that I don't want on my screen.

How can I permanently remove it from eclispe ?


回答1:


It's easiest to just disable EGIT from automatically managing your projects at import via Window - Preferences - Team - Git - Projects:

This will stop new projects from being managed, but projects that were imported before the change will still need EGIT to be disabled manually for the project. You can just right click -> Team -> Disconnect and they will no longer be managed by EGIT.




回答2:


Just right click your project, and choose team > disconnect




回答3:


Found this link -> http://blog.sarathonline.com/2012/05/eclipse-indigo-without-mylyn.html

Please read the whole link, but in case it goes dead these are the move instructions from that link.

# cd path/to/eclipse/installation

mkdir disabled disabled/features disabled/plugins

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


来源:https://stackoverflow.com/questions/17408483/how-to-remove-egit-from-eclipse-kepler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!