搭建一个简单的svn服务器

Posted 晚来秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建一个简单的svn服务器相关的知识,希望对你有一定的参考价值。

cenos 6.5,svnserver 1.6.11

默认可能已经安装,没有的话就:

yum install svn -y
svnserver --version

创建一个svn仓库:

svnadmin create /root/myrepo/

配置这个仓库(这里简单设置为匿名可写),vi /root/myrepo/conf/svnserve.conf

[general]
anon-access = write

配置svnserver,vi /etc/sysconfig/svnserve

OPTIONS=" -d --listen-port 9999 -r /root/myrepo"

启动svnserver

/etc/init.d/svnserve start

用svn操作下

svn mkdir -m my dir svn://localhost:9999/my
svn co svn://localhost:9999/my
cd my/
touch 1.txt
svn add 1.txt
svn ci -m 添加一个文件1.txt
svn delete -m delete my dir svn://localhost:9999/my

over

以上是关于搭建一个简单的svn服务器的主要内容,如果未能解决你的问题,请参考以下文章

搭建SVN服务器

SVN服务器搭建

使用Docker搭建svn服务器教程

用心剖析,详解如何搭建百万PV网站架构,简单易懂!!!

搭建一个简单的svn服务器

centos下搭建多项目svn服务器