Eclipse的SVN插件与本地客户端关联不上解决方案

news/2024/6/1 18:44:48 标签: svn, 版本控制

问题:Eclipse 安装SVN插件后,使用SVN插件导出的代码,使用本地的SVN不能进行版本控制

原因:SVN插件与SVN客户端版本不兼容

对应关系:
Subclipse 1.4.x includes and requires Subversion 1.5.x client features and working copy format.
Subclipse 1.6.x includes and requires Subversion 1.6.x client features and working copy format.
Subclipse 1.8.x includes and requires Subversion 1.7.x client features and working copy format.
Subclipse 1.10.x includes and requires Subversion 1.8.x client features and working copy format.
Subclipse 1.12.x includes and requires Subversion 1.9.x client features and working copy format.

TortoiseSVN版本:TortoiseSVN 1.7.5
Eclipse SVN插件:Subclipse 1.8.5
Subversion下载地址:http://subclipse.tigris.org/servlets/ProjectDocumentList?collapseFolder=1730&folderID=2240

SVN插件下载地址及更新地址,你根据需要选择你需要的版本。
SVN官网下载地址:http://subclipse.tigris.org/

Links for 1.12.x Release:
Eclipse update site URL: http://subclipse.tigris.org/update_1.12.x

Links for 1.10.x Release:
Eclipse update site URL: http://subclipse.tigris.org/update_1.10.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Archived releases: http://subclipse.tigris.org/archive

Links for 1.8.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.8.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.8.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Archived releases: http://subclipse.tigris.org/archive

Links for 1.6.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.6.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.6.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

Links for 1.4.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.4.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.4.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

注意:如果share project之后显示远程配置库没有文件,让你提交,那就说明本地的插件版本还没有对应好,如果是对应好的,经过Share Project之后,eclipse中的文件图标就会显示正常了。


http://www.niftyadmin.cn/n/1506605.html

相关文章

关于UITableViewCell

一个表视图通过cell对象来绘制可见的单元格,只要这些单元格是可见的就会将他们放入缓存中。Cell继承自UITableViewCell类。如果视图控制器实现了UITabelViewDataSource协议,通过实现tabelView:cellForRowAtIndexPath:方法,数据源会为表视图提…

python colorbar xtick locator_Colorbar作为Gridspec(python)中的子块:更改大小

它是一个3x3网格规格的seaborn热图矩阵,一个色条占据了整个第三列。我想使colorbar看起来更短。在我看来,有两种选择:要么我把颜色条的情节缩短我设法减少了gridspec中最后一列的可用空间。在不幸的是,我还没找到合适的方法。有人…

mybatis hibernate 比较

开发速度的对比 就开发速度而言,Hibernate的真正掌握要比Mybatis来得难些。Mybatis框架相对简单很容易上手,但也相对简陋些。个人觉得要用好Mybatis还是首先要先理解好Hibernate。 比起两者的开发速度,不仅仅要考虑到两者的特性及性能&…

负载均衡之基于L7负载

L7负载平衡    还有一种较为经常使用的负载平衡解决方式则是L7负载平衡。顾名思义,其主要通过OSI模型中的第七层应用层中的数据决定怎样分发负载。    在执行时。L7负载平衡server上的操作系统会将接收到的各个数据包组织成为用户请求,并依据在该…

从Hadoop框架与MapReduce模式中谈海量数据处理转

从hadoop框架与MapReduce模式中谈海量数据处理 前言 几周前,当我最初听到,以致后来初次接触Hadoop与MapReduce这两个东西,我便稍显兴奋,觉得它们很是神秘,而神秘的东西常能勾起我的兴趣,在看过介绍它们的文…

线段树专题

①POJ3667 题目链接&#xff1a;http://poj.org/problem?id3667 思路&#xff1a;pushup为合并&#xff0c;向上更新。pushdown为向下更新&#xff0c;lazy存放待更新的操作&#xff0c;1为置满&#xff0c;0为无操作&#xff0c;-1为置空。 #include<cstdio> #include&…

python类takes no arguments_Python中的学习类出现的object() takes no parameters问题

当学习面向对象的类和实例的时候&#xff0c;我一开始输入书中的代码&#xff0c;结果出现了object() takes no parameters问题&#xff0c;过程如下&#xff1a;class Student(object):def _init_(self,name,score):self.name nameself.score scoredef print_score(self):pr…

IB VS 纯代码

一般刚开始学习开发iOS的开发者不会考虑是使用IB编写UI好还是使用纯代码编写好&#xff0c;因为刚开始学习的时候可能都觉得只要先学会开发iOS就可以了&#xff0c;再者IB也是苹果官方提供的编程方式&#xff0c;不会有什么问题。但是当开发完全可以掌握使用Ib设计iOS的时候就开…