仅在 bitbucket 存储库中提供对问题跟踪器的访问
Providing acces to issue tracker only in bitbuckets repository
问题:
如果我将与客户端相关的用户组添加到具有读取权限的存储库中,他们是否能够在本地系统上克隆存储库?
如果是,我应该采取什么措施来使组或用户仅限于问题跟踪器而不是代码,这意味着他们应该能够创建、更新和关闭问题,但他们应该无法克隆存储库,有什么办法可以做到吗,因为我不希望客户在为整个项目付款之前访问代码。
Bitbucket's permissions do not support what you want to do.
具有读取权限的用户可以克隆存储库:
View, clone, and fork the repository code. All public repositories grant all Bitbucket Cloud users read permissions automatically. Read access on a repository also allows users to create issues, comment on issues, and edit wiki pages.
没有允许用户创建和自由浏览问题同时限制对存储库的读取访问的配置。最有可能的设置是私有存储库/public 问题跟踪器,但在这种情况下,没有存储库访问权限的用户访问问题跟踪器会受到限制:
Only users who have access to the private repository can create an issue. Other Bitbucket users and any Internet browser can view the issue tracker if you publish the URL.
可能还有其他服务支持您的要求。
问题:
如果我将与客户端相关的用户组添加到具有读取权限的存储库中,他们是否能够在本地系统上克隆存储库?
如果是,我应该采取什么措施来使组或用户仅限于问题跟踪器而不是代码,这意味着他们应该能够创建、更新和关闭问题,但他们应该无法克隆存储库,有什么办法可以做到吗,因为我不希望客户在为整个项目付款之前访问代码。
Bitbucket's permissions do not support what you want to do.
具有读取权限的用户可以克隆存储库:
View, clone, and fork the repository code. All public repositories grant all Bitbucket Cloud users read permissions automatically. Read access on a repository also allows users to create issues, comment on issues, and edit wiki pages.
没有允许用户创建和自由浏览问题同时限制对存储库的读取访问的配置。最有可能的设置是私有存储库/public 问题跟踪器,但在这种情况下,没有存储库访问权限的用户访问问题跟踪器会受到限制:
Only users who have access to the private repository can create an issue. Other Bitbucket users and any Internet browser can view the issue tracker if you publish the URL.
可能还有其他服务支持您的要求。