环境搭建


  • 下载并安装git: https://git-scm.com/download/win

  • 下载并安装node.js: https://nodejs.org/zh-cn/download/

  • 安装hexo

    • 打开cmd输入下面命令安装

      1
      $ npm install hexo-cli -g
    • 输入hexo -v 检查安装信息

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      hexo-cli: 3.1.0
      os: Windows_NT 10.0.17763 win32 x64
      node: 12.16.1
      v8: 7.8.279.23-node.31
      uv: 1.34.0
      zlib: 1.2.11
      brotli: 1.0.7
      ares: 1.15.0
      modules: 72
      nghttp2: 1.40.0
      napi: 5
      llhttp: 2.0.4
      http_parser: 2.9.3
      openssl: 1.1.1d
      cldr: 35.1
      icu: 64.2
      tz: 2019c
      unicode: 12.1

初始化Blog

  • 右键 git bash here 命令,创建blog目录
1
$ hexo init myblog
  • 进入myblog目录,启动blog
1
2
$ cd myblog
$ hexo server
  • 在浏览器输入 127.0.0.1:4000 访问blog

git bash here右键失灵

  • 打开 Win + R 输入 regedit 回车,打开注册表

  • 找到[HKEY_CLASSES_ROOT\Directory\Background]

  • 在[Background]下,右键新建[shell] #如果没有就新建

  • 在[shell]右键,新建项[Git Bash Here]

  • 选择Git Bash Here 右键新建 字符串值,命名为Icon,设置值为”git安装根目录\mingw64\share\git\git-for-widows.ico”,添加Git图标

  • 在[Git Bash Here]右键,新建项目[command],设置默认值为“git安装根目录\bin\bash.exe”