2024年6月9日发(作者:)
MyEclipse中SVN使用步骤
一.下载SVN服务器端安装,配置
是目前软件开发中,最流行、最先进的版本控制工作,比起VSS、CVS等版本控
制工具,具有很多优势。
分为服务器端和客户端
服务器端指Tigris SVN;客户端包括Tortoise SVN,Eclipse SVN插件,这两者也是最常
用的
相关软件下载地址:
服务器端:/
客户端Tortoise SVN下载地址:/
Eclipse SVN插件下载地址:/
服务器端部署步骤:
1.下载安装,傻瓜式安装,很简单
2.安装完毕之后,创建资源库(Repository),将来存放所有项目资源的仓库,命令如下
(cmd下执行)
svnadmin create d:SVNRepoRepo1
Repo1就为创建的资源库
3.资源库创建完毕之后,找到D:文件打开,
修改
修改之前为:
[general]
### These options control access to the repository for unauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
# anon-access = read
# auth-access = write
### The password-db option controls the location of the password
### Uncomment the line below to use the default password file.
发布评论