NickG
NickG

Reputation: 9830

Is it safe to move a subversion working copy to a new computer using xcopy?

I have many subversion checkouts (~50) some of which are quite large (hundreds of MB). To check each of these out again over the internet will take hours/days. Is it safe to just copy the whole directory structure to the same location on my new computer?

Nick

Upvotes: 2

Views: 1222

Answers (1)

Michael Jensen
Michael Jensen

Reputation: 221

It is safe. Make sure you get all of the "hidden" .svn directories and that the version of subversion you're running on the new computer is at least as new as the one on the old computer. If you try to run an older version of subversion on the new computer, it will most likely fail.

Upvotes: 6

Related Questions