我的文件是否物理存储在 Subversion Repository 文件夹中?
我已将一个全新的项目导入到我的 Subversion 存储库中,该项目大小为 36MB,但在导入项目后,我检查了 Repository 文件夹,发现 Repository 文件夹仅增加了 6MB。所以,我想知道,我的项目文件实际上保存在哪里?
环境:Windows 7,客户端:Tortoise Subversion,Visual Studio 插件:Visual Subversion。
Possible Duplicate:
How exactly does subversion store files in the repository?
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
导入 Subversion 存储库的文件会自动压缩。
The files that you import into the Subversion repository are automatically compressed.
默认情况下,Subversion 将所有项目信息存储在
BerkeleyDB
数据库系统中。所以它们位于数据库内,这意味着压缩、标准化等等......
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...