概述
一、服务端
1. 下载Subversion,安装。
2. 在dos窗口,进入安装目录的bin目录,添加系统服务(这样就不用每次都去打开启动窗口),其中E:SVN为svn库地址,可以自定义:
sc create svnservice binpath= "D:Program FilesSubversionbinsvnserve.exe --service -r E:SVN" displayname= "SVNService" depend= Tcpip start= auto
3. 配置:以上操作将在E盘生成一个svn文件夹,进入E:svnconf,有三个文件:authz、passwd、svnserve.conf
1)authz是用户权限配置文件
[/]
tan=rw
*=r
[/delphi]
ygw=rw
nmc=rw
*=r
[/]代表下面的用户名可以操作该版本库下的所有项目,[/delphi]代表下面的用户只可对delphi项目进行读写操作,就以上图解释:tan用户可以对该版本库的所有项目进行读写,而其他用户只能是读,不能进行写的操作,ygw和nmc用户只可以对版本库里的DELPHI项目进行读写,其他用户对这个项目都只能是读而不能写,TAN用户也不可以对DELPHI项目进行写操作,因为在最后面用了*=R,切断了父权限,而*=R不能省去,省去会出错,如果设*= ,则是不能读该项目,就是打开版本库的时候看不到该项目下的文件。
注意:这里的#号是注释的意思。
2)passwd是用户名密码配置文件
passwd文件最终设置完成的样式如下图:
[users]
Tan= 123
ygw= 123
nmc= 123
设置用户名和密码。左边是用户名,右边是该用户名的密码。
3)svnserve.conf是SVN服务文件
snserve.conf最终设置格式如下图:
anon-access = none
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the conf directory.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the conf
### directory. If you don't specify an authz-db, no path-based access
### control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
anon-access = none 表示不允许匿名访问,然后把原文件的这四项的#号去掉就可以了。
二、客户端
下载TortoiseSVN,安装。
三、Eclipse插件
1. 在线安装:Help—>Install New Software—>Add,在Localtion一项输入SVN插件地址http://subclipse.tigris.org/update_1.8.x,确定,选中搜索到的插件进行安装。
分享到:
2012-04-07 21:58
浏览 436
评论
最后
以上就是迷人抽屉为你收集整理的eclipse 集成svn客户端_windows下SVN及其Eclipse插件的安装的全部内容,希望文章能够帮你解决eclipse 集成svn客户端_windows下SVN及其Eclipse插件的安装所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复