SpawnFailed错误的几种解决方法

问题描述:

在使用 hexo d 时,出现 SpawnFailed 的错误

个人博客地址:小豆同学的个人站 (douzaixue.github.io)

解决方案:

  • 解决方法零:重!新!电!脑!(´。_。`)

  • 解决方法一:

    # 第一个就是你的邮箱,第二个就是你的用户名
    git config --global user.email "[email protected]"
    git config --global user.name "210173313"
    
  • 解决方法二:

    # 删除.deploy_git文件夹,输入:
    git config --global core.autocrlf false
    # 然后,依次执行:
    hexo clean
    hexo g
    hexo d
    
  • 解决方法三:

    # 打开_config.yml配置文件,修改以下内容
    
    deploy:
    type: 'git'
    repo: https://github.com/yourname/yourname.github.io.git
    branch: master
    
    # 其中的repo修改为
    repo: [email protected]:yourname/yourname.github.io.git
    

你可能感兴趣的:(奇奇怪怪的问题,github,git,hexo)