通过 link 在 bitbucket 中访问

access by link in bitbucket

我在 bitbucket 中有私有存储库。我可以制作类似于 任何人 link 的文件 都可以在 Google 驱动器中共享吗?我想将我的存储库设为私有,但让某些人(我不知道这些人的具体帐户)可以阅读它?

您可以 add users with read access,但那是针对所有存储库的。

这就是 Git 的问题:您要么可以阅读完整的存储库(需要克隆它),要么根本无法阅读。
没有"file-level".

您需要将您的文件同步到具有共享-link 功能的服务(例如 Google Drive,或 Dropbox,或...)

I don't want to file-level access.
I want to give access to FULL repo to all users who has link on this.
Unfortunately, I don't know these users have account BitBucket or no

很公平,但同样,我不知道匿名共享访问 link 功能(用于 BitBucket 或 GitHub 或 GitLab)。

一种可能的解决方法是设置 access key

You can use access keys with your Bitbucket Cloud repositories. An access key grants read-only access to a public or private repository. With an access key, a user or a process can pull or clone a repository over SSH.

通过传达私钥(其 public 密钥已注册为您的私人存储库的访问密钥),您可以有效地向任何拥有该私钥的人授予对该存储库的读取权限。