概述
问题描述:
使用goland初始化go 项目加载go.mod时,报错误提示:
fatal: could not read Username ... terminal prompts disabled
问题定位:
由于加载go.mod使用的是go get命令,其中go get 命令用于从远程代码仓库(比如 Github )上下载并安装代码包,由于使用的是内网的仓库的依赖包,所以猜测可能是没有配置git config相关的配置
通过命令git config --list或vi ~/.gitconfig查看git的配置信息
$ git config --list
user.name=test
user.email=test@gmail.com
.....
解决方案:
添加用户名或密码配置或修改为ssh访问仓库
1. 修改配置文件~/.gitconfig, 添加配置信息
[user]
# Please adapt and uncomment the following lines:
name = test
email = test@gmail.com[url "ssh://git@github.com:"]
insteadOf = https://github.com/
2. 直接使用git config配置
git config --global user.name "test"
git config --global user.email test@gmail.com
git config --global --add url."git@github.com:".insteadOf "https://github.com/"
3. 修改GIT_TERMINAL_PROMPT配置
export GIT_TERMINAL_PROMPT=1
最后
以上就是寂寞毛巾为你收集整理的could not read Username ... terminal prompts disabled的全部内容,希望文章能够帮你解决could not read Username ... terminal prompts disabled所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复