关于hexo博客通过git上传源码到仓库报错及解决办法

请求超时

1
fatal: unable to access 'https://github.com/muciyoung/blog.git/': Failed to connect to github.com port 443: Operation timed out
  • 网络原因,多上传几次就好了

远程源已存在

1
error: remote origin already exists.
  • 解决办法
  • 先执行git remote rm origin删除源文件,再执行 git remote add origin [远程仓库地址],最后执行 git push -u origin main

说说我在上传中遇到的问题

1
2
fatal: unable to access 'https://github.com/muciyoung/blog.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 

  • 解决方案
  • 执行 git config --global http.sslVerify "false",再重新push: git push -u origin main,如下,最终上传成功!
  • img.png
  • 这是一个GitHub上传测试