If the repository is contained in a folder, is it sufficient to take the backup of this folder instead of typing the commands to create a dump?
feedback
|
migrated from stackoverflow.com Oct 30 '09 at 20:04
This question came from our site for professional and enthusiast programmers.
|
This is described in great detail in the Subversion Book:
| |||||||
feedback
|
|
You can have a look at this page. If you only want to backup a checkout you can archive it like a normal folder, the svn configs are stored in the (The question should be moved on superuser) | |||||||||
feedback
|
|
No, you cannot backup a repository folder without locking the repository. See this chapter of the SVN book for more information regarding backups. A dump is one way to do a backup. You could also make a hotcopy:
Or you can use | |||||
feedback
|
|
If you are sure that no user will commit anything while you are copying the repository folder, then it's safe. Otherwise, using the hotcopy or dump command is recommended. | |||
|
feedback
|