eclipse里安装SVN插件,一般来说,有两种方式:

  1. 直接下载SVN插件,将其解压到eclipse的对应目录里

  2. 使用eclipse 里Help菜单的“Install New Software”,通过输入SVN地址,直接下载安装到eclipse里

   第一种方式:

1.下载SVN插件

   SVN插件下载地址及更新地址,你根据需要选择你需要的版本。现在最新是1.8.x

  • Links for 1.8.x Release:

        Eclipse update site URL: http://subclipse.tigris.org/update_1.8.x

        svn插件包下载: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

  • Links for 1.6.x Release:

         Eclipse update site URL: http://subclipse.tigris.org/update_1.6.x

         svn插件包下载: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

  • Links for 1.4.x Release:

        Eclipse update site URL: http://subclipse.tigris.org/update_1.4.x

        svn插件包下载: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

   2.下载后安装

   下载后的插件包目录结构:

779a9f64-de4c-3a8c-9d58-f6ed03477e66.png

将插件包features和plugins目录中的文件分别复制到Eclipse安装目录的features和plugins中。

然后重启Eclipse

645af6fd-1b1c-3d02-b448-0a3560be8bd9.png

   第二种方式:

   1.菜单操作

0c820d76-52da-32ec-9589-369a588ba1cc.png

   2.点击“Add”,在弹出的窗口里,输入对应的SVN地址,然后“OK”

64131ee5-85b2-3847-a829-7977d3f22878.png
3.在下图中将2个都选中,然后一路点Next,就可以了
c1aca096-713e-3288-9c6f-789af98c25db.png

二、Eclipse中使用SVN(以MyEclipse8.0为例)

1、共享项目(把本地的项目共享到subversion服务器上)

打开MyEclipse8.0,假设要共享projTest是项目名称
右键项目projTest->Team->Share Project->Svn,
单库模式下url填写svn://svn server address/,多库模式下url填写svn://svn server address/Repository1,其中Repository1是库的名称
next直到finish,proj1就被共享到svn服务器上了,但是代码并没上传,还需要commit一次
右键项目projTest,team->commit,项目内容就被上传到svn服务器了
2、签出项目(把svn服务器上的项目下载的到本地)
打开MyEclipse8.0
window->open perspective->svn repository explorer(如果没有在other里选择)
在左边空白处右键->new->repository location
单库模式下url填写svn://svnserveraddress/,多库模式下url填写svn://svnserveraddress/Repository1(同步骤二)
右键projTest->check out
next直到finish,该项目就被签出到本地,切换到java视图就能看到该项目了