Subversion on-the-fly replication
by normanmaurer on Apr 08, 2009
- 20,967 views
Accessibility
Categories
Tags
More...Upload Details
Uploaded via SlideShare as Microsoft PowerPoint
Usage Rights
© All Rights Reserved
Statistics
- Favorites
- 17
- Downloads
- 405
- Comments
- 5
- Embed Views
- Views on SlideShare
- 20,801
- Total Views
- 20,967
http://planet.admon.org/synchronize-subversion-repositories-with-inotify-tools/ 11 months ago Reply
/path/to/svnsync copy-revprops --source-username=svnsync --sync- svnsync username=svnsync http:///repos/proxy-sync $REV 1 year ago Reply
also, since you initiate the sync FROM the master server (ultimately in the post-commit), i find it's best to not force my sync-outs to use apache. that is:
instead of:
svnsync --sync-username syncuser --sync-password syncpassword --source-username specialsourceuser --source-password init http://slaveserver/svn-sync/reponame http://masterserver/svn/reponame
i can simply push from file:
svnsync --sync-username syncuser --sync-password syncpassword init http://slaveserver/svn-sync/reponame file:///path/to/repo
[on a windows server that file path looks like file:///C:/whatever/ versus linux which is like file:///rootfolder/path] 2 years ago Reply