现在的位置: 首页 > 综合 > 正文

MyEclipse8.0下载及svn配置

2017年11月28日 ⁄ 综合 ⁄ 共 986字 ⁄ 字号 评论关闭

下载地址 http://www.verycd.com/topics/2774019/

 

  下面是配置svn

  打开MyEclipse8.0

  help->Software Updates->find and install(如果没有这个就用help->Software Updates->Add/Remove Software即可)

  选择search for new features to install, Next

  点击new remote site

  输入name:subclipse,url:http://subclipse.tigris.org/update_1.6.x,点OK

  选中subclipse,点击finish

  在弹出框中选择subclipse,把Subclipse Integration for Mylyn 3.x去掉,

  Next一路安装完成!

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

  打开MyEclipse8.0 ,假设要共享projTest是项目名称

  右键项目projTest->Team->Share Project->Svn,

  单库模式下url填写svn://svnserveraddress/,多库模式下url填写svn://svnserveraddress/Repository1,其中Repository1是库的名称

  next直到finish,proj1就被共享到svn服务器上了,但是代码并没上传,还需要commit一次

  右键项目projTest,team->commit,项目内容就被上传到svn服务器了来源:www.examda.com

  二.签出项目(把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视图就能看到该项目了。

抱歉!评论已关闭.