1. 程式人生 > >實現同步兩個svn伺服器

實現同步兩個svn伺服器

初始化映象SVN

示例:映象svn(遠端svn) 源svn(本地svn)
svnsync init `映象SVN` `源svn` --username syncuser --password syncpass

svnsync init http://192.168.0.62/svn/test/ http://192.168.0.61/svn/test/ --username chenwb --password chenwb_pwd

測試同步

svnsync synchronize http://192.168.0.62/svn/test/ --username chenwb --password chenwb_pwd

啟用實時備份

在svn專案hook目錄下,新建post-commit檔案,內容如下:

svnsync synchronize --non-interactive http://192.168.0.62/svn/test/ --username chenwb --password chenwb_pwd

參考連結:
1、使用svnsync實時備份SVN版本庫
https://www.cnblogs.com/zz0412/p/svnsync.html