返回顶部
首页 > 资讯 > 后端开发 > GO >在 golang 中导入私有仓库时版本和 https 引用无效
  • 297
分享到

在 golang 中导入私有仓库时版本和 https 引用无效

2024-04-04 23:04:18 297人浏览 薄情痞子
摘要

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天编程网给大家整理了《在 golang 中导入私有

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天编程网给大家整理了《在 golang 中导入私有仓库时版本和 https 引用无效》,聊聊,我们一起来看看吧!

问题内容

尝试在 Golang 中将私有存储库作为包导入。做了:

git config --global [email protected]:.insteadof Https://GitHub.com/

因此理论上所有对 https 的引用都会被 ssh 版本替换。

github.com/xxx/util

是我的私人仓库,它是一个 go 模块。

我执行 go get -v 并得到:

[gabriel@xiridio backend]$ go get -v
go: finding module for package github.com/XXX/util
go: downloading github.com/XXX/util v0.0.0-20200411022955-454673685ff5
go: finding module for package github.com/XXX/util
main.go:12:2: github.com/XXX/[email protected]: verifying module: github.com/XXX/[email protected]: reading https://sum.golang.org/lookup/github.com/!X!X!X/[email protected]: 410 Gone
        server response:
        not found: github.com/XXX/[email protected]: invalid version: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in /tmp/gopath/pkg/mod/cache/vcs/f1fdc5cc42a6995f954688df06783c05d28e4a60e9aaf6930a88a2487b913907: exit status 128:
                fatal: could not read Username for 'https://github.com': terminal prompts disabled

似乎存在“版本”问题,并且由于某种原因仍然存在对 https 的引用。我还能做什么?


解决方案


可以肯定的是,我更喜欢在 git config 命令中使用引号:

git config --global url."[email protected]:".insteadof "https://github.com/"

请参阅此 GISt as an example。

它包括:

使用 [email protected] 的替代方法是在您的 github 帐户上生成个人访问令牌,授予其存储库访问权限,然后使用以下命令:

git config --global url."https://${github_token}:[email protected]/".insteadof "https://github.com/"

另请检查“go get results in 'terminal prompts disabled' error for GitHub private repo”,其中提到了 goprivate 的使用。

为了能够使用 go 1.18 拉取我的私有模块,我必须做两件事:

  1. 相当于 @vonc 的答案,将以下两行添加到我的 ~/.gitconfig 中:
[url "ssh://[email protected]/"]
        insteadof = https://github.com/
  • 将我的私有模块 git 路径的每个显式添加到 goprivate 变量:
  • go env -w GOPRIVATE="github.com/projname/mod1,github.com/projname/mod2,github.com/projname/mod3"

    我认为这是必要且充分的,或者至少是充分的。

    今天关于《在 golang 中导入私有仓库时版本和 https 引用无效》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注编程网公众号!

    您可能感兴趣的文档:

    --结束END--

    本文标题: 在 golang 中导入私有仓库时版本和 https 引用无效

    本文链接: https://lsjlt.com/news/596159.html(转载时请注明来源链接)

    有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

    猜你喜欢
    • 在 golang 中导入私有仓库时版本和 https 引用无效
      IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天编程网给大家整理了《在 golang 中导入私有...
      99+
      2024-04-04
    软考高级职称资格查询
    编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
    • 官方手机版

    • 微信公众号

    • 商务合作