Unbuntu下使用SVN

Posted 张宝的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unbuntu下使用SVN相关的知识,希望对你有一定的参考价值。

一、查看SVN版本

svn --version

 

二、查看SVN仓库

# 查看被svn仓库占用的所有端口
netstat -anp |grep svn

# 查看所有端口对应的仓库
ps -ef | grep svn

 

三、创建仓库repos并开启服务(使用3691端口,默认为3690)

mkdir -p /opt/svn/repos
svnadmin create /opt/svn/repos
svnserve -d -r /opt/svn/repos --listen-port 3691

 

四、创建仓库repos的用户zhangbao

# 仓库初始化后,包含下列几个文件
[email protected]:/opt/svn/repos# ls conf/ db/ format hooks/ locks/ README.txt

# 我们需要配置的是conf文件夹下的文件 [email protected]:
/opt/svn/repos# ls conf authz hooks-env.tmpl passwd svnserve.conf

# 配置svnserver.conf,指明登录仓库,必须使用用户账户和密码的方式 [email protected]:
/opt/svn/repos# vim conf/svnserve.conf anon-access = none auth-access = write password-db = passwd authz-db = authz

# 配置用户 [email protected]:
/opt/svn/repos# vim conf/authz [groups] admin = zhangbao [/] @admin = rw

# 给用户设置密码(明文形式) [email protected]:
/opt/svn/repos# vim conf/passwd [users] zhangbao = 111111

 

五:使用仓库

# 检出仓库
svn checkout svn://123.56.108.61:3691/ --username=zhangbao
# 更新仓库
svn update


(完)

以上是关于Unbuntu下使用SVN的主要内容,如果未能解决你的问题,请参考以下文章

有人可以解释啥是 SVN 平分算法吗?理论上和通过代码片段[重复]

svn报错cleanup failed–previous operation has not finished; run cleanup if it was interrupted的解决办法(代码片段

Unbuntu22.04安装教程以及Unbuntu下C++环境的配置

unbuntu如何删除没有用的桌面图标

debian/unbuntu下安装配置android开发环境

如何安装win10与unbuntu双系统