idea上传gitee报错unable to read askpass response from 'C:\Users\..\..\intellij-git-askpass.bat' failedto
程序员文章站
2022-04-17 18:46:03
...
使用idea上传gitee代码报错unable to read askpass response from ‘C:\Users…\intellij-git-askpass.bat’ failed to execute prompt script (exit code 1) could not read Username
#解决方法改动在项目中的.git/config配置
改为这种方式
[remote “origin”]
url = http://账号:密码@gitee.com/码云用户名/仓库名.git
fetch = +refs/heads/:refs/remotes/origin/
改动步骤
1 打开gitbash cd进入项目中
2.键入vim .git/config 修改配置将url修改为上方格式就行
在此界面中 按键盘i
:进入修改模式ESC
:退出修改模式:wq
保存并退出
如果是连接的github上的 地址改成相应的 形式
https://[userName]:[password]@github.com/[username]/project.git
github 与 gitee只差前面的一个userName 最前面的userName改为账号就是gitee的格式
困扰了我几个小时
上一篇: Github 创建仓库并上传项目
下一篇: 码云 gitee 创建和简单使用