我签入的 svn 文件夹在服务器上的什么位置?
试图理解一些东西。我在我的服务器上创建了 ad:\svn\repository 。我提交了文件夹,但是当我返回 d:\svn\repository 时,我看不到它们。它们都在数据库中吗?我的所有存储库都会进入该主文件夹并且 svn 会跟踪它们吗?如果我有两个项目怎么办?
谢谢。
Trying to understand something. I created a d:\svn\repository on my server. I committed folders but when I go back to d:\svn\repository I do not see them. Are they all in a database? Will all my repositories go in that main folder and svn tracks them? What if I have two projects?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Subversion 不会将逻辑文件夹存储在服务器上的相同结构中,它会跟踪“数据库”中增量文件中的所有内容。该数据库特定于 Subversion。提交给该存储库的所有内容都位于该文件中。您不会在服务器上找到您的逻辑结构,它只是不那样工作。
来自 FSFS
Subversion doesn't store the logical folders in the same structure on the server, it tracks everything in an file of the deltas in a "database". This database is specific to Subversion. Everything committed to that repository goes in that file. You won't find your logical structure on the server, it just doesn't work that way.
From FSFS