博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows安装Subversion
阅读量:5168 次
发布时间:2019-06-13

本文共 1486 字,大约阅读时间需要 4 分钟。

1、安装Setup-Subversion-1.8.16.msi

下载地址:https://sourceforge.net/projects/win32svn/

2、将svn添加到Windows系统服务

sc create SVNserver binPath= “C:\Program Files\Subversion\bin\svnserve --service -r D:\SVN”

3、创建配置库:

svnadmin create D:\SVN\ESCM

4、修改配置文件:passwd

[users]
# harry = harryssecret
# sally = sallyssecret
cm = 1q2w3e4R
escm = 1q2w3e4R

5、修改配置文件:authz

[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
g_admin = cm
g_guest = escm

# [/foo/bar]

# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]

# @harry_and_sally = rw
# * = r

[/]

@g_admin = rw
* = r

[/branches]

@g_guest = rw

6、修改配置文件:svnserve.conf

### 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
### directory containing this file. The specified path may be a
### repository relative URL (^/) or an absolute file:// URL to a text
### file in a Subversion repository. 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

7、导入数据(需要输入用户名、密码)

svn import -m "first import project" D:\SVN\import svn://localhost/ESCM

8、checkout项目

svn checkout svn://localhost/ESCM

注意:如果是XP系统,请安装TortoiseSVN-1.7.15.25753-win32-svn-1.7.18.msi

转载于:https://www.cnblogs.com/icsnow/p/5981462.html

你可能感兴趣的文章
测试理论
查看>>
Oracle 总结
查看>>
Python基础知识
查看>>
自动化集成环境部署
查看>>
CAS、AQS、锁以及并发工具
查看>>
volatile实现原理
查看>>
1.maven下仅shiro框架对shiro的测试使用
查看>>
【1】redis的安装和配置,以及简单的增删查改uinx命令
查看>>
2.shiro+jdbc+idea+maven数据库
查看>>
最基础eacharts图带数字,百分比,tab切换
查看>>
数组扁平化
查看>>
Gaze Estimation学习笔记(1)-Appearance-Based Gaze Estimation in the Wild
查看>>
MXNet源码解析
查看>>
PowerAI DDL
查看>>
Baidu All Reduce
查看>>
All Reduce算法汇总
查看>>
利用卷积进行序列到序列学习
查看>>
深度梯度压缩:减小分布式训练的通信带宽
查看>>
优化CUDA数据传输
查看>>
AI 深度关键短语生成
查看>>