ImageVerifierCode 换一换
格式:DOCX , 页数:14 ,大小:467.39KB ,
资源ID:7471390      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bingdoc.com/d-7471390.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Eclipse中SVN版本控制插件的安装和使用Word文档下载推荐.docx)为本站会员(b****4)主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(发送邮件至service@bingdoc.com或直接QQ联系客服),我们立即给予删除!

Eclipse中SVN版本控制插件的安装和使用Word文档下载推荐.docx

1、Begin the installation from the Eclipse Help menu item.Step 2:This screenshot show the screen as it initially comes up. In this case you will need to change the radio button to indicate that this is a new install.Step 3:This screen will vary depending on the features you have installed already. You

2、want to click on the New Remote Site button. If you are behind a proxy and the Eclipse install mechanism does not work, then you can download a zipped version of the update site and then click the New Local Site button instead.Step 4:This screen is showing the New Remote Site dialog, filled in with

3、the correct information to install SubclipseName: 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)/subclipse.tigris.org/update_1.0.xStep 5:When you first come back to this screen, the site you added will NOT be selected. Be sure to s

4、elect it before clicking Next.Step 6:This next screen shows all of the features that are available to install.Step 7:Click the button to accept the license agreement.Step 8:Confirm the install locationStep 9:There is an Eclipse preference to turn off this next dialog. I have never seen a signed feat

5、ure. Not even Eclipse.org nor IBM sign their features.Step 10:Just a screenshot of the in-process installation.Step 11:Eclipse needs to be restarted after installing Subclipse.Step 12:Finally, after restarting Eclipse, the first thing you will typically want to do is open the Subclipse Repository pe

6、rspective where you can define your repositories. Be sure to also check the online help as well as the Subclipse preferences located under Team - SVN.OK到此你的插件已经安装完毕了,说明一下,在Step 5中选择的是在线安装,也可以在http:/subversion.tigris.org/servlets/ProjectDocumentList?folderID=91下载后进行本地安装,本地安装选择New Local Sit.,然后找到解压出来的

7、那个文件夹,后面的都一样了。卸载的方法也很简单,也是点击 Help = Software Updates = Manage Configuration按上图操作就可以卸载了。二、Use Subclipse in Eclipse 3.x(使用)先向版本库中加入一个Eclipse工程,我这里是随便搭建的一个WEB工程 SVNtest ,将它导入版本库svn:/localhost/ts(这使用本机装的版本库,其他机器就要打ip地址,之前说过)。导入后用版本库浏览器找到你导入的工程目录,把其下WebRootWEB-INFclasses目录删掉(注意:不删出以后会报错,原因后面再讨论)这些初始化的操作都

8、用客户端工具完成的,毕竟插件的功能还不是那么强大。做好以上的准备后打开Eclipse编译器,点击编译器右上角的Open Perspective 打开SVN资源库界面,新建一个资源库选择资源库的位置,这里我们就用刚才搭好的 svn:/localhost/ts 作为工程目录,点击Finish后如果成功则会看到版本服务器中工程的树形结构了(可能需要用户密码验证)。在svn:/localhost/ts 根目录上点右键,选择“验出”(英文版的可能叫 Check Out),在弹出窗口中选择“作为空间的项目验出”,下边的项目名称随便叫,我这里还是用 SVNtest 作为项目名称。一切没有问题了点击Finis

9、h。之后它就会从服务器上把工程下到你本地了。好啦,来到Eclipse编辑栏会发现刚才下的工程文件都会带有SVN版本控制标记了,再去Workspace看看,也会发现下载的工程文件夹,并且也有控制标记。 而且里我们会发现在SVN控制下的文件多出来一个Team选单,打开一看原来就是一个客户端工具呀,提交,更新,同步,合并,切换我们再熟悉不过了,自己试试吧 _。顺便说一下刚才为什么要删除class目录,起初我没有删掉它,更改提交没有问题,但在更新时总是报错:Working copy not locked; this is probably a bug, please report svn:,提示就是c

10、lass目录下的.svn有毛病,到http:/www.tigris.org查找解决方法,有一段描述:This message is coming straight out of the Subversion library, so technically it is Subversion asking you to report the problem to them. This error message is kind of their general error message when something really unexpected happens. In the case o

11、f Eclipse, the problem is almost always one specific thing. The problem is that your Eclipse build folder was versioned and added to your repository. What happens is that when Eclipse does a full build it will delete everything in this folder, including the .svn metadata folder. When Subversion cann

12、ot find this folder it issues the above error.The solution is to delete this folder from your repository, which you can do from the SVN Repositories view. Then try deleting the folder from your working copy and perforiming an update. You might need to checkout your project again. Once you have a val

13、id project again, be sure to add the build folder to the svn:ignore property of its parent folder so that the problem does not happen again.If this is not your problem, then as best as you can try to figure out what might have led up to having this problem and report it on th Subversion userssubvers

14、ion.tigris.org mailing list大意:重新部署工程时会将文件夹WEB-INF/classes下的内容全删了,包括这个文件夹,从面导致SVN找不到这个文件夹的信息,于是报错。 解决的方法是在SVN仓库内将classes下的内容清空,然后在确保本地工程已完全提交的情况下,将本地工程包括文件删除,再从SVN仓库中重新取出。 导致此问题的原因善不明确,估计是往这个文件夹手动添加了文件。安装方面就介绍到此吧,如果有什么问题在联系我吧。相关资源 Subversion http:/subversion.tigris.org/ TortoiseSVN http:/tortoisesvn.

15、tigris.org/ Svn1ClickSetup http:/svn1clicksetup.tigris.org/ Subclipse http:/subclipse.tigris.org/ Subversion中文站 最近尝试在J2ME的开发中使用SVN进行版本控制,第一是为了只维护一份代码,避免重复劳动;第二是利用SVN的“锁定”功能可以保证对源代码修改的唯一性;第三可以进行代码恢复;第四为了代码的安全性。有关Subclipse插件的安装请看下面我记录一下Subclipse里的基本操作:1.更新、提交鼠标右击项目名称选择“Team”,然后选择如下菜单项:图1.“更新”和“提交”功能在这

16、个菜单项里有Subclipse常见的操作功能,当然最最常见的就是“更新”和“提交”了。2.代码恢复有时候我们修改了代码后,发现效果并不如我们想象的那样,或者需求部门更改了需求,需要我们恢复到以前的代码,那么Subclipse的“代码恢复”在这个时候就显得异常重要了,如下: 图2.“代码恢复”功能这个菜单我们可以通过Window-Show view-other-SVN调出来,在这个窗口里选择“刷新”按钮后,窗口的上半部分就显得了我们最近所做的修改项。我们只需要在相应的修改项上点右键,然后选择“从修改版*恢复更改”,那么代码就恢复到相应项的修改前。3.查看本地代码和远程SVN服务器代码的异常在多人协作的时候,我们有时候需要查看同事修改了哪些部分,那么Subclipse就异常方便了,如下:图3.“资源库同步”功能首先选择“与资源库同步”,然后在左边会出现“Synchronize窗口”,窗口里即为我们本地和远程SVN服务器上不同的代码部分,如下: 图4.“资源库同步”窗口如果我们双击响应的java文件,那么右边窗口就会显示具体的代码修改之处,如下:图5.查看本地代码和SVN远程服务器上的异同总结:Subclipse作为eclipse SVN的插件,提供的功能还是很强大的,基本能满足团队协作的需要。本文来自CSDN博客,转载请标明出处:

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2