-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: "unknown revision" error is misleading if the entire repo can't be found #47028
Comments
Thanks for the report. This may be due to a misconfiguration of the go command, or it could be a bug. Are you familiar with documentation on private modules? See https://golang.org/cmd/go/#hdr-Configuration_for_downloading_non_public_code and https://golang.org/ref/mod#private-modules for a high level overview, and https://golang.org/ref/mod#private-module-proxy-direct more specifically (which applies if you're not using a private proxy). If not, can you read over it and see if there's something documented there that you're not taking account? Thanks. |
I believe this is an issue with gitlab where they will return a HTTP 200 + the go-import meta tag for any Eg,
|
I have read the document you provided. It did cover the missing configuration I already added. As noted at the bottom of the report, I did resolve the issue to get the module. It was a missing configuration (_netrc) that was setup on the Linux server (normal development platform), but was missed on my Windows PC (new development platform). However, the error message was not clear as to the root cause. The root cause was an authorization failure. I do not know if the detection of this error is an issue with the GitLab service or Go's use of the service. |
What version of Go are you using (
go version
)?What version of Git are you using (
git version
)?What version of GitLab are you using (
Help
)?Private Instance of:
Does this issue reproduce with the latest release?
Yes. Also, in version 1.16.3.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do (with results)?
There is an application that was developed and built on a Linux server. We wanted to build natively on Windows.
What did you expect to see?
When I perform the same actions on Linux (and I delete the go/pkg directory first), I would expect to see:
go: downloading gitlab.mydomain.com/group/subgroup/dependency v1.0.4
...
Further research...
I deleted the go.mod and go.sum files. I performed a go mod init and then a go mod tidy.
It appears as if Go is requesting the subgroup as a repository?! That is not correct. I am sure there is an underlying reason for this behavior, but it leaves users unclear about root cause.
I performed a git clone https://gitlab.mydomain.com/group/subgroup/dependency.git successfully. So, a direct git clone command was successful. As I had setup a credential helper, this was even non-interactive. It left me unsure about root cause, appearing that access was not an issue.
I did some online research and found #34094. This seemed relevant but did not provide immediate clarity for resolving the issue. There was some mention about non-support for interactive logins. There was also mention about private repositories, which is how dependency.git was setup.
Finally, I found #24606 go get on Windows. By setting up the _netrc in my User directory, I was able to resolve the issue.
If I am understanding the Go behaviour properly, it appears as if Go is accessing GitLab directly without Git (as git is setup with a credential helper) and having an access issue. However, it is not displaying any message indicating an access issue. It would be nice to have a message that displays some sort of access failure instead of this fallback that attempts to git a non-existent repository.
The text was updated successfully, but these errors were encountered: