更新于 

hexo&git 部署和粗修

第一次配置hexo

  1. 安装Git
    1. 安装
    2. 配置SSH
      1. ssh-keygen -t rsa -C "你的邮箱地址" 回车回车生成.SSH和.PUB文件
      2. 复制文件内容到Github
      3. ssh -T git@github.com 检查和授权
  1. 安装Nodejs
    https://blog.csdn.net/qq_48485223/article/details/122709354

    1. 安装
    2. 在nodejs文件夹下配置两个子文件夹node_global和node_cache
      1. npm config set cache "D:\Engineering\nodejs\node_cache"
        npm config set prefix "D:\Engineering\nodejs\node_global"
      2. 新建环境变量
        NODE_PATH = D:\Engineering\nodejs\node_modules (node_modules 路径)
        PATH 添加 D:\Engineering\nodejs\node_global(node_global 路径)
  2. 安装hexo

(-g为全局安装命令)

npm install -g hexo-cli

如果Git失败

ipconfig /flushdns
git config --global http.sslVerify "false"

安装主题

Volantis

git clone https://github.com/volantis-x/hexo-theme-volantis.git themes/volantis

Butterfly

git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly

Stellar

git clone https://github.com/xaoxuu/hexo-theme-stellar.git themes/stellar

Npm 包配置

npm install --save hexo-deployer-git

npm install --save hexo-renderer-jade hexo-generator-feed hexo-generator-sitemap hexo-browsersync hexo-generator-archive

npm install hexo-renderer-pug hexo-renderer-stylus --save