vote up 6 vote down star
2

Right now, my SVN repository is on my laptop's HDD (although I use a code hosting service for more "critical" personal projects) and I just copy the directory over on a weekly basis (which will eventually be scripted or perhaps I'll make an app for the hell of it). Am I at risk for corrupting my SVN repository? So far, I haven't had any problems with the original or the copy, but that doesn't mean that I'm not at risk in the future.

flag

6 Answers

vote up 11 vote down check

Consider using hot copy..

http://svnbook.red-bean.com/en/1.2/svn.ref.svnadmin.c.hotcopy.html

link|flag
Hot copy is the safest way to go, and restoring is easy too. Good call! – Abyss Knight Oct 9 '08 at 17:42
Thanks for the comment :) – Benjamin W. Smith Oct 9 '08 at 20:54
vote up 0 vote down

I used to use a flash disk and just created a file-based repo on it. The only downsides (besides forgetting it!) was the flash disk had to have the same drive letter at each PC, and the speed, it felt like a slow internet connection.

Else, it worked just fine.

link|flag
vote up 0 vote down

You wrote:

Right now, my SVN repository is on my laptop's HDD and I just copy the directory over on a weekly basis

A question for you: why?

Am I at risk for corrupting my SVN repository?

Not at all if your copy is just that: a copy. If your "copy" opens some file locked for writing you might be at risk (you said in a comment it something that looks like you are under windows, and it might happen on windows) - if there is another process trying to write something into the repos at the same time.

So far, I haven't had any problems with the original or the copy, but that doesn't mean that I'm not at risk in the future.

Real point is: are you copying for backup purpose? If so, a copy it might be useless (depending on the details of the restore process). See: http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate

So finally: use svnadmin dump

link|flag
vote up 2 vote down

You may be safe, but only because you know that no one is accessing the repository on your laptop. However, svn (svnadmin) provides hot copy and dump commands that are as easy to run as your copy command, and they are "guaranteed safe".

link|flag
vote up 1 vote down

You shouldn't be at risk of corrupting the main repository just doing a copy. However, the copy could be corrupted if something is locked at the time of the copy.

You could use an application such as SyncBackSE which can schedule the backup and uses shadow copy in case of locking.

link|flag
vote up 3 vote down

AFAIK it is safe, but why not do export for a backup?

link|flag
My repositories are actually in My Documents. I just copy everything in My Documents once a week. It's easier and quicker, but I should use export. That is what it's made for, isn't it? – Thomas Owens Oct 9 '08 at 17:32
Nope you should use dump, export is used to export the code without any of the versioning information. – levhita Oct 9 '08 at 17:51

Your Answer

Get an OpenID
or

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