如何发现私人Bitbucket存储库

时间:2019-05-10 18:12:20

标签: bitbucket bitbucket-cli

使用bash,是否可以使用一些命令行实用程序来为我的组织发现bitbucket存储库?像这样:

key="$HOME/.ssh/key"

bitbucket --ssh-key="$key" --discover-repos --org='teros' | while read line; do
  echo "$line"
done 

1 个答案:

答案 0 :(得分:0)

您将无法使用SSH,但是Bitbucket Cloud API将使您看到给定用户可以访问的存储库列表:

https://developer.atlassian.com/bitbucket/api/2/reference/resource/user/permissions/repositories

这当然不会向您显示您无权访问的任何存储库-如果您仍然可以看到它们,它们就不是真正的私人存储库-但它应该让您看到那里的内容。