图解:
一。安装svn服务器
1 .安装:下载 Setup-Subversion-1.6.5.msi 服务器,然后一直点next安装即可
2 配置:进入命令行进行以下操作,如:
d:
mkdir svnworkspace
cd svnworkspace
svnadmin create share //创建svn仓库
svnserve -d -r share //启动服务器 -d 表示后台运行 - r表示 root share即刚创建的仓库
3.修改 d:/svnworkspace/share/conf/svnserve.conf
将 # password-db = passwd 改为 password-db = passwd
4.授权
在d:/svnworkspace/share/conf/passwd中加入:
如:test=test //用户名=密码
二。安装subecplise插件(myeclipse 6.5以下的用此方法,7.0以上好象就不用这么麻烦了,直接输入url即可)
Name: Subclipse 1.4.x (Eclipse 3.2+)
URL: http://subclipse.tigris.org/update_1.4.x
注意:Subeclipse Integerations不要勾选上,否则会出错(Subclipse Integration for Mylyn 3.x (Optional) (3.0.0) requires plug-in "org.eclipse.mylyn.tasks.core (3.0.0)", or compatible)
4. 。。。。。。。。接下来只需accpt,next等等,等待几分钟之后即可
-------------------------------------------------------------------------------------------------------------------
使用:
一。从svn服务器上 checkout项目到ecplise
new --> other --> svn --> Checkout Projects From SVN --> next -->输入url
(如:svn://192.168.1.201/share,share是刚创建的仓库),--> next -->选择要 checkout的项目,
输入用户名密码 ok
二。将项目提交到svn服务器上
右击项目 -- > team -- > Share Project --> SVN --> 选择或输入url ........................ok