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 list -u -m all - 查看所有直接和间接依赖项的可用次版本和补丁升级
获取特定模块的版本
go list -m all | grep golang.org/x/text | awk '{print $2}'
or
go list -u -m all | grep golang.org/x/text | awk '{print $2}'
一般是
go list -u -m all | grep <module-name> | awk '{print $2}'
from to Go-find-version-of-a-module
from to
The text was updated successfully, but these errors were encountered:
No branches or pull requests
go list -u -m all - 查看所有直接和间接依赖项的可用次版本和补丁升级
获取特定模块的版本
or
一般是
from to
Go-find-version-of-a-moduleThe text was updated successfully, but these errors were encountered: