nam
nam

Reputation: 23868

How to move TortoiseSVN repository and working copy both from one PC to another

I'm moving from PC1 to PC2 - both are windows 10. PC1 has only one repository and only one working folder of a project. PC1 has TortoiseSVN installed. All the checkouts/checkin/commits etc are done via TortoiseSVN. I've installed TortoiseSVN on PC2 as well. Question: What would be a simplest way to move repository and working folder to PC2 while still keeping the change history etc. on PC2. Note: Everything is done via TortoiseSVN only.

Upvotes: 1

Views: 1079

Answers (1)

royalTS
royalTS

Reputation: 631

Make sure that everything is committed and there are no pending changes in your working copy. Then just delete the working copy.

Depending on your configuration you might be able to simply copy the complete repository to the new PC or you need to make a dump of the repository, create a new repository and import the dump. For creating a dump you should have installed the svnadmin command line tools (it´s an option during the TortoiseSVN installation).

Then simply create a new working copy from the new repository, to start working again.

Upvotes: 1

Related Questions