如何设置svn仓库的权限?

发布于 2025-01-05 11:31:24 字数 101 浏览 1 评论 0原文

我使用 svnadmin create repos 在网络驱动器上创建了一个存储库。

有没有办法设置用户对存储库的权限?

如果是这种情况,如何设置这些权限?

I created a repository on a network drive with svnadmin create repos.

Is there a way to set user permissions to the repository?

And if that is the case how can those permissions be set?

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

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

发布评论

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

评论(1

岁月静好 2025-01-12 11:31:24

如果您需要通过 svn:// 协议(嵌入式授权)管理访问,您所需要做的就是更改新创建的存储库的 conf 文件夹中的文件

  1. :设置 passwd (repos/conf/passwd) 以定义用户和密码列表
  2. 设置 authz (repos/conf/authz) 以定义组和权限
  3. 设置svnserve.conf (repos/conf/svnserve.conf) 用于定义一般访问配置

这是如何编辑和配置对存储库的访问。您也可以参考 官方文档 以便深入研究颠覆访问管理。

如果您需要通过 http:// 协议管理访问,您可能需要咨询 有关此事的官方 subversion 文档,这是一个比嵌入式 subversion 授权更复杂的主题。

If you need to manage access via svn:// protocol (embedded authorization), all you need to do is to change files in conf folder of your newly created repository:

  1. Set up passwd (repos/conf/passwd) in order to define a list of users and passwords
  2. Set up authz (repos/conf/authz) in order to define groups and privileges
  3. Set up svnserve.conf (repos/conf/svnserve.conf) in order to define general access configuration

Here is simple guide of how to edit and configure access to your repository. Also you can consult official documentation in order to dive into subversion access management.

In case you need to manage access via http:// protocol, you might like to consult official subversion documentation on this matter, it's a bit more complex topic than embedded subversion authorization.

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