Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the default location for reposatory files in SVN? And how does it store them? (plain files,some sort of database)?

Thanks

share|improve this question

1 Answer

up vote 6 down vote accepted

There does not exist a default location for the repository. This has to be configured. Either in svnserve or via Apache configuration. Inside the repository the information stored in a compressed form in plain files with a particular structure. This is the FSFS Backend which behaves like a database with transaction and possible rollback. On the other hand there exist the BerkeleyDB backup which uses the BerkeleyDB which was the first backend. But in the meantime the FSFS backup has become to the defacto standard storage. Simpler to backup etc. Details about how the storage is working internally you can find on the web-site

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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