英文: Why does go.sum include so many older packages 问题 我一直在处理一组项目,涉及更新依赖项,有一件事我没有明确的答案,那就是为什么生成的总和文件中...
如何使用SSH密钥身份验证密码来获取私有存储库
英文: How to `go get` private repos using SSH key auth with password 问题 我通常会在我的ssh密钥中设置一个密码短语,这样,如果密钥被...
使用HTTPS GRC从AWS CodeCommit获取私有存储库。
英文: Get a private repository from AWS codecommit using HTTPS GRC 问题 我正在尝试导入位于AWS CodeCommit中的一个模块。为了...
查找Golang中每个依赖项的校验和。
英文: Find checksum of every dependency in golang 问题 我想要能够获取由Go程序使用的每个包的校验和,包括在模块内使用的包。 标准库中的runtime/d...
go mod校验和不匹配
英文: go mod checksum mismatch 问题 到目前为止,我是团队中唯一能够复现以下软件包问题的开发人员。 为了纠正这个不匹配,我尝试了以下方法: 运行 go clean -modc...
如何使用go mod获取本地包?
英文: How to go mod get local package? 问题 我想让go.mod获取selfCheck文件夹内的包(获取selfCheck文件夹内的包)。 selfCheck/enc...
Get Name of Current Module in Go
英文: Get Name of Current Module in Go 问题 我正在尝试为我编写的HTTP处理程序自动创建命名的日志记录器,其中我传递了一个函数(指针)。 我正在使用这个问题中提到的...
Why there are two "require" blocks in go.mod since Go 1.17?
英文: Why there are two "require" blocks in go.mod since Go 1.17? 问题 我已经创建了一个小的Go应用程序。几天前,我从...
找到当前主模块的伪版本。
英文: Find the Pseudo-version of the current, main module 问题 我有一个 Go 代码生成工具,在构建二进制文件时,我想要在构建时使用 Go 工具将...
如何为go get命令指定DNS?
英文: How to specify dns for go get command 问题 我有一个依赖项,它发布在公司的GitLab上,只能通过特定DNS服务器的域名进行发现。在我的本地环境中,go ...
13