解决git push提示fatal: unable to access ‘xxx.git/‘:的错误

解决git push提示fatal: unable to access ‘xxx.git/’:gnutls_handshake() failed: Error in the pull function.的错误

由于此次实验需要用到github classroom 在一次提交的过程中发生了如下错误,
在这里插入图片描述
搜索之后很多方法如出一辙但是并不解决问题,这里分享一个从StackOverflow上面的得到的可以解决的方法:

I solved this modifying ~/.gitconfig adding the proxy conf:

首先,检查是不是用了代理,如果有代理,在这个文件中添加如下内容:

[http]
    proxy = http://xxx.xxx.xxx.xxx:pppp

我这里是因为用了一个加速GitHub的软件,因此设置了自动代理,最后添加
指令代码
解决git push提示fatal: unable to access ‘xxx.git/‘:的错误_第1张图片
成功 git push:
解决git push提示fatal: unable to access ‘xxx.git/‘:的错误_第2张图片

你可能感兴趣的:(遇到的问题以及解决,linux)