Reputation: 301
I need to sync two subversion repositories using only client libs. Repository A will contain commits that need to be synced to Repository B on a weekly basis. Repository B will not contain any changes. I do have server access to Repo A but not to Repo B.
As I can't access the server on Repo B using svndump is not an option.
I think it should be possible to write a script that uses the svn command line client but would rather use an existing solution. The commits don't need to contain the user information but the commit message and any properties that are set.
Any tools out there that might help me?
Upvotes: 0
Views: 93
Reputation: 3818
You can use svnsync to keep a repository "clone" on a system:
http://www.thoughtspark.org/node/10
No need to have physical access to the server to use "svnadmin dump".
Upvotes: 2