美文网首页
svnsync同步备份

svnsync同步备份

作者: KricYi | 来源:发表于2018-11-02 11:25 被阅读0次
首先在目标机器安装VisualSVN-Server,并创建新的仓库与用户,给用户授权读写权限。

linux

cp pre-revprop-change.tmpl pre-revprop-change; 
chmod 755 pre-revprop-change; 
vi pre-revprop-change; 

windows
修改文件”pre-revprop-change.tmpl”将其最后一行修改为

exit 0

然后复制一份,文件名:”pre-revprop-change.bat”, 把内容改为

echo "Changing revision properties other than svn:log is prohibited" >&2
exit 0

1.初始化

svnsync init {目标库url} {源库url} 

然后进行权限认证,输入 p,或者

svnsync init {目标库url} {源库url}  --username   {账户}  --password {密码}  

2.同步

svnsync sync {目标库url}

3.windows 同步bat,可用windows定时任务计划定时同步。

d:
svnsync sync{目标库url}  --username {账户}--password {密码}  

参考以下博客
https://www.jianshu.com/p/cfbaeba08417
https://blog.csdn.net/shepherd2010/article/details/73846690

相关文章

网友评论

      本文标题:svnsync同步备份

      本文链接:https://www.haomeiwen.com/subject/ygvqxqtx.html