使用bash,是否可以使用一些命令行实用程序来为我的组织发现bitbucket存储库?像这样:
key="$HOME/.ssh/key"
bitbucket --ssh-key="$key" --discover-repos --org='teros' | while read line; do
echo "$line"
done
答案 0 :(得分:0)
您将无法使用SSH,但是Bitbucket Cloud API将使您看到给定用户可以访问的存储库列表:
https://developer.atlassian.com/bitbucket/api/2/reference/resource/user/permissions/repositories
这当然不会向您显示您无权访问的任何存储库-如果您仍然可以看到它们,它们就不是真正的私人存储库-但它应该让您看到那里的内容。