安装eclipse的git插件报错的解决

在一台电脑上安装eclipse的git插件,报以下错误:

Cannot complete the install because one or more required items could not be found.
  Software being installed: Eclipse Git Team Provider - Task focused interface 3.7.1.201504261725-r (org.eclipse.egit.mylyn.feature.group 3.7.1.201504261725-r)
  Missing requirement: Git Team Provider UI 3.7.1.201504261725-r (org.eclipse.egit.ui 3.7.1.201504261725-r) requires ‘bundle org.eclipse.team.core [3.6.100,4.0.0)‘ but it could not be found
  Cannot satisfy dependency:
    From: Eclipse Git Team Provider 3.7.1.201504261725-r (org.eclipse.egit.feature.group 3.7.1.201504261725-r)
    To: org.eclipse.egit.ui [3.7.1.201504261725-r]
  Cannot satisfy dependency:
    From: Eclipse Git Team Provider - Task focused interface 3.7.1.201504261725-r (org.eclipse.egit.mylyn.feature.group 3.7.1.201504261725-r)
    To: org.eclipse.egit.feature.group 3.7.1

参照这个链接:

Eclipse Indigo 3.7.0 装配GIT插件提示 requires ‘bundle org.eclipse.team.core

发现是自己的eclipse版本问题,我的eclipse版本是Indigo版本,要填入以下链接:

http://download.eclipse.org/egit/updates-1.0

不过这个版本安装的插件识别不了已经导入的git工程,等于没装啊。

时间: 2024-09-30 04:33:01

安装eclipse的git插件报错的解决的相关文章

20170514002Oracle 11g R2安装过程中遇到的报错及解决办法

Oracle 11g R2安装过程中遇到的报错及解决办法 1.提示Check if the DISPLAYvariable is set.    Failed<<<< 解决方案: #xhost +  //切换到root用户输入 #su – Oracle  //切换到oracle用户 $./runInstaller  //执行安装程序 xhost 是用来控制X server访问权限的. 通常当你从hostA登陆到hostB上运行hostB上的应用程序时, 做为应用程序来说,hostA

maven插件报错之解决

maven插件报错之解决 用m2eclipse创建Maven项目时报错?? maveneclipsebuilddependenciesauthorizationplugins 用m2eclipse创建Maven项目时报错?? 问题: Could not calculate build plan: Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1 from http://repo1.maven.

Windows 10 上安装 3D Studio Max 2016 报错的解决办法

在 Windows 10 上安装 3D Stuido Max 2016 报错,无法正常安装,查看日志是 VC 运行时安装错误,经过分析发现在 Windows 10 上已经有这些运行时并且版本比安装包中自带的还要高,所以安装总是失败,分析安装程序配套的 setup.ini 文件,发现里面有运行时安装的配置信息,并且可以忽略错误,因此修改 setup.ini 文件,然后就可以顺利进行安装了,修改后的 setup.ini 文件如所示 #============= VCREDIST Begin ====

火狐浏览器扩展插件报错sec_error_ocsp_old_response解决办法

      firefox有个证书在线验证的功能,默认开启.每次访问https网站时,火狐会访问ocsp.digicert.com以查询证书合法性,如果这个网站不能访问则默认https证书是无效的,停止加载网页并报错. 解决办法:

Visual Studio Code 使用 Git插件报错 - Permission denied (publickey)

在使用GitHub的时候,为了避免每次输入用户名密码,都会使用SSH方式代替Https. 按网上教程,大多数使用SSH-KeyGen生成公私钥对,而后上传公钥至Github,并切换Repositorie为SSH. 使用SSH-KeyGen输出如下: Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Created directory '/root/.ss

CentOS7安装Docker时的异常报错与解决方法

确认环境 [[email protected] ~]# cat /etc/redhat-release CentOS Linux release 7.0.1406 (Core) docker安装 -> 报错 [[email protected] ~]# yum install docker Loaded plugins: fastestmirror, langpacks Repodata is over 2 weeks old. Install yum-cron? Or run: yum mak

window 10 安装 Net Framework 3.5 报错 0x800F081F 解决

把普通程序安装成服务用到一个名为winex的小程序,下载安装net3.5,安装报错 0x800F081F 微软官方有好多人有相似问题,本机通过以下方式成功解决: 下载 Windows Update Troubleshooter软件,安装后再安装net3.5成功. 问题描述: https://answers.microsoft.com/en-us/windows/forum/windows_8-update/net-framework-35-fails-to-install-with-error-

eclipse 加载插件报错 org.eclipse.mylyn.java.tasks

在eclipse 中点按住Ctr 键的时候报以下这个错, The 'org.eclipse.mylyn.java.hyperlink.detector.stack' extension from plug-in 'org.eclipse.mylyn.java.tasks' to the 'org.eclipse.ui.workbench.texteditor.hyperlinkDetectors' extension point failed to load the hyperlink dete

eclipse使用STS插件 报错:SocketTimeoutException: Read timed out

新建boot项目后,提示: SocketTimeoutException: Read timed out 解决: 在eclipse.ini末尾,追加: -Djava.net.preferIPv4Stack=true 然后, 重启Eclipse,搞定. 原文地址:https://www.cnblogs.com/yaoyuan2/p/10348203.html