git推送远程仓库报错:fatal: unable to access ‘https://github.com/***.git/‘: OpenSSL SSL_read: Connection was
git推送远程仓库报错:fatal: unable to access ‘https://github.com/***.git/‘: OpenSSL SSL_read: Connection was
·
解决方法:
把 .git/cofig中的url里https改成http就OK了。
[remote "origin"]
url = https://github.com/koking0/Algorithm.git
fetch = +refs/heads/*:refs/remotes/origin/*
改成
[remote "origin"]
url = http://github.com/koking0/Algorithm.git
fetch = +refs/heads/*:refs/remotes/origin/*
更多推荐
所有评论(0)