git仓库提交失败的解决方法

git仓库提交失败的解决方法


现象:

使用vscode开发环境,向git仓库提交最新代码时,产生下面的错误:

See 'git help config' and search for 'push.default' for further information.

(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)

fatal: unable to access 'http://git.XXX.com/bigdata/face-detect.git/': Failed connect to git.XXX.com:8080; No error


分析:

1.之前4天前,提交最新代码是正常的

2.通过浏览器登录,查看项目,没有问题,项目成员中存在本人的用户和响应的权限

3.用户名,密码没有问题


经过搜索,

    很多情况都是服务器的服务增加了代理服务器,或者服务器的协议有http变为了https,

    想到git支持4种协议,本地协议、HTTP协议、Git协议、SSH协议。
    尝试修改为ssh协议,成功。


项目位置:D:\git.XXX.com\bigdata\face-detect\
配置文件位置:D:\git.XXX.com\bigdata\face-detect\.git\config

[remote "origin"]
    url = http://git.XXX.com/bigdata/face-detect.git    
-->
[remote "origin"]

    url = [email protected]:bigdata/face-detect.git


只是找到了方法,没有找到原因

git使用的协议附上 https://download.csdn.net/download/zooop/10304582

你可能感兴趣的:(版本管理)