fatal: unable to access ‘https://github.com/xzghua/test.git/’: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
设置了ssh,但是执行
git push origin master
还是报错
有两种解决方式
git config –global –unset http.proxy
找到你的项目,然后在根目录下执行
vim .git/config
然后会看到
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://github.com/xzghua/test.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
把 url后的 https://github.com/xzghua/test.git
改成
git@github.com:xzghua/test.git
即可
在执行
esc :wq即可
本站(PHP --> Golang)已重构,代码开源
当你能力不能满足你的野心的时候,你就该沉下心来学习