• Eclipse在SVN安装步骤(两种)和使用方法


    一、至Eclipse安装SVN,最常见的两种方式:手动模式,使用安装向导。具体操作步骤如下:

    单程:手动安装

    1、官方网站下载,从site-1.6.9.zip文件,网址是:subclipse.tigris.org
    2、从解压features与plugins文件夹,复制到E:/MyEclipse/myPlugin/svn里面,其他*.xml文件不。
    3、在E:/MyEclipse/MyEclipse X.X/dropins下新建文件svn.link,内容是:path=E://MyEclipse//myPlugin//svn 保存。
    4、删除E:/MyEclipse/MyEclipse X.X/configuration/org.eclipse.update文件夹
    5、重启myeclipse就一切正常了。

    方式二:使用Eclipse安装向导

    打开Eclipse
    help->Software Updates->find and install(如果没有这个就用help->Software Updates->Add/Remove Software即可)
    选择search for new features to install, Next
    点击new remote site
    输入name:subclipse 1.6.x,url:http://subclipse.tigris.org/update_1.6.x,点OK
    或者:
    Name: Subclipse 1.6.x (Eclipse 3.2+)    URL:  http://subclipse.tigris.org/update_1.6.x
        Name: Subclipse 1.4.x (Eclipse 3.2+)    URL:  http://subclipse.tigris.org/update_1.4.x
        Name: Subclipse 1.2.x (Eclipse 3.2+)    URL:  http://subclipse.tigris.org/update_1.2.x   
        Name: Subclipse 1.0.x (Eclipse 3.0/3.1)    URL:  http://subclipse.tigris.org/update_1.0.x

    选中subclipse,点击finish
    一直NEXT,这里注意下,有些时候会出现 Subclipse Integration for Mylyn 3.x (Optional) (3.0.0) requires plug-in "org.eclipse.mylyn.tasks.core (3.0.0)", or compatible.错误,这个不要紧,在弹出框中选择subclipse,把Subclipse Integration for Mylyn 3.x选项去掉即可
    Next一路安装完成!

    二、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你可以看到该项目的视图

  • 相关阅读:
    Enables DNS lookups on client IP addresses 域名的分层结构
    移除 URL 中的 index.php
    Design and Architectural Goals
    The Model represents your data structures.
    If a cache file exists, it is sent directly to the browser, bypassing the normal system execution.
    UNION WHERE
    cookie less
    http 2
    UNION DISTINCT
    联合约束 CONCAT()
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/4557760.html
Copyright © 2020-2023  润新知