当前位置: 代码迷 >> 综合 >> matery发布/删除+部署+常见问题
  详细解决方案

matery发布/删除+部署+常见问题

热度:38   发布时间:2023-11-23 17:25:10.0

问题1:OpenSSL SSL_read: Connection was reset, errno 10054

git config --global http.sslVerify "false"

问题2:Spawn failed

##进入站点根目录
cd /usr/local/src/hexo/hanyubolg/##删除git提交内容文件夹
rm -rf .deploy_git/##执行
git config --global core.autocrlf false##最后
hexo clean && hexo g && hexo d

问题3:Failed to connect to github.com port 443: Timed out

git config --global http.proxy http://127.0.0.1:1080git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxygit config --global --unset https.proxy

发布文章+部署:

hexo n "文章名"具体markdown文档hexo ghexo d

删除文章+部署:

删除具体markdown文档hexo ghexo d
  相关解决方案