发布网友 发布时间:2022-04-23 13:48
共3个回答
懂视网 时间:2022-04-23 18:10
Gitversion 1.8.5.2执行git push命令异常,如下:
1 Push failed 2 Failed with error: unable to read askpass response from 'C:Userseddy.WebStorm2017.1system mpintellij-git-askpass.bat' 3 failed to execute prompt script (exit code 1) 4 could not read Username for 'http://gitlab.qdum.com': No error
原因
.git文件下 config文件中没有用户身份信息
解决
在请求串中加入身份信息即可,格式为:
https://[userName]:[password]@github.com/[username]/project.git
修改后
1 [remote "origin"] 2 url = 3 fetch = +refs/heads/*:refs/remotes/origin/*
注:1111111代表密码,此处为示例
热心网友 时间:2022-04-23 15:18
2.2版本是存在问题,但我的上传还是正常。这里提示的是你用户名对,要么就是密码错误,才导致上传不能成功热心网友 时间:2022-04-23 16:36
将远程仓库和本地仓库关联起来