如何在 svn 服务器中使用基于文件系统的存储库,而不是基于数据库的存储库?
我正在开发一个 PHP 网站。如果我们在服务器中使用基于文件系统的存储库,那么我们可以将其用作网站根目录。
I'm dev a PHP website. If we use file system based repo in server, then we can use it as the website root.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于文件的存储库不会为您提供真正可读的文件内容,您可以将其用作网站。
通过 http 提供 SVN 存储库需要 Apache 和相应的 Apache 模块。
如果您正在使用 VisualSVN(如您的标签所示),那么您已经准备好了一切。
如果您想在没有 VisualSVN 的情况下提供存储库,则需要导出存储库内容,无论它是基于数据库还是基于文件。
A file based repo doesn't provide you really readable file contents which you could use for serving them as a website.
Serving a SVN repo via http requires Apache and the according Apache module.
If you are using VisualSVN (as your tag suggests) you will have everything in place already.
If you want to serve your repo without VisualSVN you will need to export your repo content regardless wether it is db-based or file-based.