php小编苹果在使用Git和Go语言开发项目时,遇到了一个问题:git ls-remote命令能够成功获取远程仓库的信息,但是使用go get命令却无法成功下载依赖的包。这个问题困扰了小编很长时间,经过不断的尝试和调试,最终找到了解决办法。在本文中,将详细介绍这个问题的原因以及解决方法,希望能对遇到相同问题的开发者有所帮助。
问题内容
git ls-remote 命令对存储库成功,如下所示。
git ls-remote https://internal.net/dir1/dir2/dir3/repo
warning: redirecting to https://internal.net/dir1/dir2/dir3/repo.git/
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx head
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy refs/heads/master
登录后复制
但是,当使用 go get 时,cmd 会失败并找不到存储库。错误输出尝试在存储库结构上方的 1 个目录中查找 .git。
go get internal.net/dir1/dir2/dir3/repo@master
go: internal.net/dir1/dir2/dir3/repo@master: invalid version: git ls-remote -q origin in /Users/{{UserId}}/go/pkg/mod/cache/vcs/xyz...: exit status 128:
remote: The project you were looking for could not be found or you don't have permission to view it.
fatal: repository 'https://internal.net/dir1/dir2.git/' not found
登录后复制
我的私有化是
goprivate=internal.net
为了让 go get 成功,我在这里缺少什么?
解决方法
在私有模块路径中添加vcs后缀以标记存储库根前缀:
go get internal.net/dir1/dir2/dir3/repo.git@master
登录后复制
请参阅直接访问私有模块:
可能仍然需要内部 http 服务器来将模块路径解析为存储库 url 。例如,当 go 命令下载模块 corp.example.com/mod
时,它会向 https://corp.example.com/mod?go-get=1
发送 get 请求,并会查找存储库响应中的 url。为了避免此要求,请确保每个私有模块路径都有一个 vcs 后缀(如 .git
),标记存储库根前缀。例如,当 go 命令下载模块 corp.example.com/repo.git/mod
时,它将克隆位于 https://corp.example.com/repo.git
或 ssh://corp.example 的 git 存储库.com/repo.git
,无需发出额外请求。
请注意,vcs 后缀是模块路径的一部分,因此应将其包含在所有使用模块路径的地方。包括:
module
指令
module internal.net/dir1/dir2/dir3/repo.git
登录后复制
require
指令
require internal.net/dir1/dir2/dir3/repo.git v0.0.1
登录后复制
进口报关
import "internal.net/dir1/dir2/dir3/repo.git/pkg/util"
登录后复制
还有更多。
以上就是git ls-remote 成功而 go get 失败的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!