How to remove EGIT from Eclipse Kepler?

后端 未结 3 1029
予麋鹿
予麋鹿 2020-12-14 06:40

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, s

相关标签:
3条回答
  • 2020-12-14 07:37

    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
    
    0 讨论(0)
  • 2020-12-14 07:42

    Just right click your project, and choose team > disconnect

    0 讨论(0)
  • 2020-12-14 07:43

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

    enter image description here

    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.

    0 讨论(0)
提交回复
热议问题