赞
踩
最近学习使用vscode中的git操作方法,遇到了一些问题,花了不时间来寻找解决方法,好不容易解决了,就把我的方法记录下来,希望可以给其他遇到该问题的小伙伴一些参考。
报错具体信息,我是以下两个问题交替出现:
fatal: unable to access 'http://github.com/haoah316/minimall.git/': OpenSSL SSL_read: Connection was reset, errno 10054
或者
fatal: unable to access 'https://github.com/haoah316/minimall.git/': Failed to connect to github.com port 443: Timed out
git config --global http.proxy
git config --global --unset http.proxy
git config --global http.sslVerify "false"
https://github.com/xxxx.git
改为
http://github.com/xxxx.git
以上方法并没有解决我的问题。。。
受上面的第三种解决方法的启发,我将.git文件夹下的config文件中的url的内容也进行了修改
把原来的https方式
https://github.com/xxxx.git
改为ssh方式
git@github.com:xxxx.git
最后保存config文件,再次push就成功了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。