当前位置:   article > 正文

go 拉取仓库依赖报错:fatal: could not read Username for ‘https://code.byted.org‘: terminal prompts disabled_go fatal: could not read username for

go fatal: could not read username for

文章目录

在我们用 go mod tidy更新项目依赖包的时候,有可能会遇到这个问题,这个主要问题是git没有配置的问题。

解决方法

在控制台输入以下命令,这个主要是配置我们拉取依赖源是哪一个,添加相应的仓库源

vim ~/.gitconfig
[user]
        email = email
        name = name
[url "git@github.com/:"]
 insteadOf = https://github.com/"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

还有一种是将ssh替代成https的方式

git config --global --add url."git@github.com:".insteadOf "https://github.com/"
  • 1

参考文档:
https://medium.com/easyread/today-i-learned-fix-go-get-private-repository-return-error-terminal-prompts-disabled-8c5549d89045
https://stackoverflow.com/questions/32232655/go-get-results-in-terminal-prompts-disabled-error-for-github-private-repo

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

闽ICP备14008679号