With TortoiseSVN, I created a repository on my external hard drive, where I store all my code. I purposely chose to put it on an external hard drive so I can use it on multiple computers (take it with me from place to place). However, yesterday, I tried to checkout my code from my repository from a different computer (also running TortoiseSVN), but it gave me errors, due to file path problems (I assume that it's related to the drive having one drive letter for my computer and a different one for the other one, which is, of course, natural). I think I'm just doing something wrong, but how can I fix this?

link|improve this question

1  
It shouldn't matter that the drive has a different letter on different computers. The working copy on each machine is the only thing referring to the drive letter. In other words, as long as it uses the same drive letter on the same computer, there shouldn't be a problem. – Sander Rijken Nov 27 '09 at 22:09
Can you indicate what errors? – Sander Rijken Nov 27 '09 at 22:11
feedback

5 Answers

up vote 2 down vote accepted

This may not be the most elegant solution, but if you just need the drive letter to be what it was before on that computer can't you just change it back to what it was using Window's "Disk Management Utility" ?

link|improve this answer
feedback

I think you're probably right. I've never encountered an SVN repository running on an external hard drive like this. I would recommend hosting your SVN repository on a computer with a svn server running (such as svnserve).

If that is not possible, check out http://beanstalkapp.com for svn hosting.

link|improve this answer
It also sounds like a horrible solution with regard to backups, unless you keep backups of your external drive ofcourse – Sander Rijken Nov 27 '09 at 22:08
feedback

Why not map the drive as the same letter everywhere?

link|improve this answer
I'm going to try that. – Maxim Zaslavsky Nov 27 '09 at 22:08
feedback

You can always use the relocate function to change where the local copy of your code is looking for it's repository.

This will be a little annoying since you will need to relocate it each time you go to a machine that uses a different path to the external drive.

link|improve this answer
feedback

You may also encounter issues if the svn clients (in your case, TortoiseSVN) on the various computers are of mismatched versions. Different versions of svn clients can have incompatible workspaces.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.