我是靠谱客的博主 老迟到月光,最近开发中收集的这篇文章主要介绍go get报错:fatal: could not read Username ... terminal prompts disabled,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
问题terminal prompts disabled
go get 报错 terminal prompts disabled
go get xxx.com/xxx/xxx
# cd .; git clone https://xxx.com/xxx/xxx.git
Cloning into 'xxx'...
fatal: could not read Username for 'https://xxx.com: terminal prompts disabled
package xxx: exit status 128
解决方案
方案一
临时解法:手动输入用户名密码
env GIT_TERMINAL_PROMPT=1 go get xxx.com/xxx/xxx
方案二
长期解法:使用已经配置好的git密钥
以GITHUB为例
git config --global --add url."git@github.com:".insteadOf "https://github.com/"
最后
以上就是老迟到月光为你收集整理的go get报错:fatal: could not read Username ... terminal prompts disabled的全部内容,希望文章能够帮你解决go get报错:fatal: could not read Username ... terminal prompts disabled所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复