views:

147

answers:

3

I have imported a fresh new project into my Subversion repository which is of 36MB, but after I imported my project, I checked the Repository folder and I see that the Repository folder just increased by 6MB. So, I am wondering, where actually my project files are saved ?

Environment: Windows 7, Client : Tortoise Subversion, Visual Studio Plugin : Visual Subversion.

+3  A: 

The files that you import into the Subversion repository are automatically compressed.

Greg Hewgill
+1  A: 

By default, Subversion store all the project information in a BerkeleyDB database system.

So they are inside a DB which means compression, normalization and whatnot...

chakrit
Nowadays Subversion by default uses its own custom storage format (FSFS), not BerkeleyDB.
Avi