常用指令

# 生成文章
hexo new "文章名"

# 部署本地服务器
hexo s

# 清楚缓存
hexo clean

# 生成静态文件
hexo g

# 部署远端服务器
hexo d

# 常用二连, 生成并部署, 以下两条作用一样
hexo g -d
hexo d -g

其他指令参考文档:https://hexo.io/zh-cn/docs/commands#generate


新电脑部署旧网站

!!注意以下文件目录不可变更, 如需变更则要更改所有脚本的内的文件路径

旧电脑操作

执行一键部署并同步.bat脚本

新电脑操作

  1. 安装Node.js环境:https://nodejs.org/en/download/
  2. D:\Personal Blog目录, clone Github的hexo-config仓库
  3. 执行迁移脚本.bat脚本
  4. D:\Personal Blog\hexo安装hexo
    npm install hexo-cli -g
    npm install
    
  5. 设置脚本执行策略
    # 查看脚本执行策略
    # Restricted: 严格模式
    # Unrestricted: 下载未签名脚本时会询问
    # Bypass: 直接执行
    Get-ExecutionPolicy
    
    当策略是Restricted时,将其设置成Unrestricted或Bypass模式
    Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force
    Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force