You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I have two Go repos. One called foo - which is a package, and one called bar - which pulls in foo as a dependency.
Because of Go's archaic (a more appropriate description is probably against community guidelines) package management system, you have to specify the full domain name of a package that you pull in - so in my file `bitbucket.org/ae-ou/bar/cmd/main.go`, I have:
import "bitbucket.org/ae-ou/foo"
I initially had an issue where I was getting this output
go get bitbucket.org/ae-ou/foo: reading https://api.bitbucket.org/2.0/repositories/ae-ou/foo?fields=scm: 403 Forbidden
server response: Access denied. You must have write or admin access.
After looking up the output, several sites told me to run the following to force a connection via SSH:
git config --global url."git@bitbucket.org:".insteadOf "https://bitbucket.org/"
When I run `go get` to pull in the foo dependency, I now get a slightly different error:
go: downloading bitbucket.org/ae-ou/foo v0.1.0
go get bitbucket.org/ae-ou/foo: bitbucket.org/ae-ou/foo@v0.1.0: verifying module: bitbucket.org/ae-ou/foo@v0.1.0: reading https://sum.golang.org/lookup/bitbucket.org/ae-ou/foo@v0.1.0: 410 Gone
server response:
not found: bitbucket.org/ae-ou/foo@v0.1.0: reading https://api.bitbucket.org/2.0/repositories/ae-ou/foo?fields=scm: 403 Forbidden
It does seem to be finding and accessing my foo repo because the latest tag in it is 0.1.0, but the go get command is still failing due to a 403. I know for certain that I don't lack permissions on my SSH key, because I use that SSH key to push to/pull from Bitbucket all the time.
Resolved. I had to restart the SSH agent in order for the .gitconfig change to take effect.
I was then faced with the following issue:
main.go:5:2: bitbucket.org/ae-ou/foo@v0.1.0: verifying module: bitbucket.org/ae-ou/foo@v0.1.0: reading https://sum.golang.org/lookup/bitbucket.org/ae-ou/foo@v0.1.0: 410 Gone
This is something that I'd addressed before - for those facing the same issue, it's just a matter of exporting a variable to prevent Go from looking up the repo in sum.golang.org - as follows:
export GOPRIVATE="bitbucket.org/ae-ou"
Hi everyone, We are looking to learn more about development teams’ workflows and pain points, especially around DevOps, integrations, administration, scale, security, and the related challeng...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.