当前位置:   article > 正文

go get或go mod tidy报错 fatal: could not read Username for_confirm the import path was entered correctly. if

confirm the import path was entered correctly. if this is a private reposito

go get git.xxxxx.net/CPC/protocol: module git.xxxxx.net/CPC/protocol: git ls-remote -q origin in /Users/admin/go/pkg/mod/cache/vcs/b23efdb68de4fde955075014c720200fc58c6052bbf3cd57ed65bf341c19c359: exit status 128:
fatal: could not read Username for ‘https://git.xxxxx.net’: terminal prompts disabled
Confirm the import path was entered correctly.
If this is a private repository, see https://golang.org/doc/faq#git_https for additional information

go get 下载依赖出错,但是项目是可以正常clone下来的,从上面报错信息可以看出是因为找不到git远程仓库的用户名信息,解决办法修改 ~/.gitconfig 让go使用ssh协议拉取代码
在 ~/.gitconfig 中添加以下信息

[url "ssh://git@git.xxxxxxxxxxxx.net/"]
	insteadOf = https://git.xxxxxxxxxxxx.net/
  • 1
  • 2

把git.xxxxxxxxxxxx.net 替换为你真实的git仓库地址

具体请参考 https://golang.org/doc/faq#git_https

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/680928
推荐阅读
相关标签
  

闽ICP备14008679号