reponame/
.git/
integration1/
integration2/
integration-common/
└── util
├── go.mod
└── readascii.go
The module directory is a subdirectory of the git repository. The repository is tagged with v0.0.1.
Heres the go.mod
go 1.14
When I do a go get for this module I get the following error:
I can see the integration-common/util/ directory in bitbucket under the tag v0.0.1 if I look with the web browser. The go.mod has the contents shown above.
What is even more odd is that go get does manage to download the other directories in the repository (integration1 and integration2). For some reason it thinks v0.0.1 doesn't contain the integration-common/ directory, even though bitbucket shows it there for that tag.
I have to use ssh instead of https because our private repos on
bitbucket.org require 2fa. I have this in my ~/.gitconfig:
I know bitbucket is weird when it comes to using go get. Is there something I missed, or is the a bug with go get and bitbucket?