I want to use go get
with a project hosted on private Bitbucket cloud. I have ssh configured so that the following works without manually entering credentials:
git clone git@bitbucket.org:<team-name>/<repo-name>.git
The following attempts don't work:
go get bitbucket.org/<team-name>/<repo-name>
go get bitbucket.org/<team-name>/<repo-name>.git
go get bitbucket.org:<team-name>/<repo-name>
go get bitbucket.org:<team-name>/<repo-name>.git
Here (https://community.atlassian.com/t5/Answers-Developer-Questions/go-get-and-bitbucket/qaq-p/565640), back in 2016, an Atlassian team member explains go get
support for Bitbucket Server, but not Bitbucket Cloud.