如何使用 VisualSVN Server 创建无需密码的 SVN 存储库

发布于 2024-10-08 02:26:50 字数 457 浏览 7 评论 0原文

我们目前正在为我们创建的模块创建一个 SVN 存储库,以便我们的合作伙伴和自由职业者可以下载模块和文档,但不能下载源代码。

我们使用 VisualSVN Server 来创建和管理存储库。我尝试过两个博客文章解释(http://www.west-wind.com/Weblog/posts/480534.aspx,http://ferventcoder.com/archive/2008/10/04/enhancing-visual-svn-to-allow-anonymous-access .aspx)了解如何创建不需要登录的匿名存储库,但这些说明不会产生预期的结果。

有人有另一种方法可以做到这一点吗?提前致谢!

We are currently creating a SVN repository for modules that we have created so that our partners and freelancers can download the modules and the doc, but not the source.

We are using VisualSVN Server to create and manage the repositories. I have tried two blog post explanations (http://www.west-wind.com/Weblog/posts/480534.aspx, http://ferventcoder.com/archive/2008/10/04/enhancing-visual-svn-to-allow-anonymous-access.aspx) as of how to create an anonymous repository that does not require login, but the instructions do not yield the expected results.

Anybody has another way of doing this? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放低过去 2024-10-15 02:26:50

我不知道为什么默认情况下它仍然没有在 VisualSVNServer 配置中实现,但解决方案很简单 - 只需添加 Satisfy 声明(并在之后重新启动服务器:-))

<Location /svn/>
  ...
  Satisfy Any
  require valid-user
</Location>

I don't know why it still not implemented in VisualSVNServer config by default, but solution is easy - just add Satisfy declaration (and restart server after :-))

<Location /svn/>
  ...
  Satisfy Any
  require valid-user
</Location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文