当前位置:   article > 正文

could not read Username ... terminal prompts disabled_could not read username for terminal prompts disab

could not read username for terminal prompts disabled

问题描述:

使用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

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

闽ICP备14008679号