We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
go version
$ go 1.19
Yes.
go env
$ go env set GOPROXY=https://proxy.golang.org,direct
https://go.dev/ref/mod#version-queries
The following works (tag-specifier).
go get github.com/switchupcb/[email protected]
The following doesn't work (branch-specifier).
go get github.com/switchupcb/dasgo@v10 go: github.com/switchupcb/dasgo@v10: no matching versions for query "v10"
The following works (branch-specifier).
go get github.com/switchupcb/dasgo@main
There is no "main" branch, however the main branch represents a branch named v10.
main
v10
go get works with the v10 branch-specifier.
go get
no matching versions for query "v10"
The text was updated successfully, but these errors were encountered:
Duplicate of #29731
Sorry, something went wrong.
No branches or pull requests
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
https://go.dev/ref/mod#version-queries
The following works (tag-specifier).
The following doesn't work (branch-specifier).
The following works (branch-specifier).
There is no "main" branch, however the
main
branch represents a branch namedv10
.What did you expect to see?
go get
works with thev10
branch-specifier.What did you see instead?
no matching versions for query "v10"
The text was updated successfully, but these errors were encountered: