Reputation: 2622
Using VisualSVN on a dedicated server and TortoiseSVN on user machines. We will soon be getting a new server and I need to transfer repo's across. What's the best way to do this? Is it simpler to just setup VisualSVN again and Import code from scratch on user machines?
Upvotes: 2
Views: 93
Reputation: 28174
Is it simpler to just setup VisualSVN again and Import code from scratch on user machines?
Well, it's simpler, but only if you don't mind throwing away the entire history of your codebase. For most people, that isn't an option.
I haven't done a migration with VisualSVN Server, so I don't know if they have any built-in tools to make this easier. However, there is a well-defined process for migrating your repository to a new server which you should follow. If VisualSVN Server has a feature for migrating your data, it's almost certainly based upon what's documented in the official manual.
Once you've migrated your data, your users will need to run svn relocate
to point their working copies at the new server.
Upvotes: 1
Reputation: 9971
Simplest way with least possibility of anyone inexperienced getting their working copies chewed/broken/confused:
Upvotes: 1