mac上搭建svn服务器


1.terminal 执行 svnadmin create 库地址/库名,生成的即为svn库根地址。
2.修改对应目录下conf/svnserve.conf文件:

anon-access = read

auth-access = write

password-db = passwd

3.terminal 执行svnserve -d -r   库根地址

4.svn://localhost 就是代码库根地址

你可能感兴趣的:(SVN)