hexo+matery

首先安装nodejs,官网一键安装即可

新建一个目录,并安装hexo

$  npm install -g hexo-cli

安装完成之后,使用hexo进行模板生成

Yet@DESKTOP-9S7FNJU MINGW64 /g/github/blog
$ hexo init

如果找不到hexo 那么将G:\nodejs\node_global\node_modules\hexo-cli\bin 加入path 即 搜索hexo将bin加入环境变量

如果提示: hexo server Usage: hexo ,是因为hexo 3以后的版本需要手动安装server模块,执行下面的命令:npm install hexo-server –save

Yet@DESKTOP-9S7FNJU MINGW64 /g/github/blog
$ npm install hexo-server --save

如果提示

ERROR Deployer not found: git

那么输入以下命令即可

npm install `--`save hexo-deployer-git

返回目录,修改_config.yml中的deploy

deploy:
  type: git
  repo: https://github.com/YYYet/YYYet.github.io.git
  branch: master

进行提交 g为生成静态页面 -d为上传

Yet@DESKTOP-9S7FNJU MINGW64 /g/github/blog
$ hexo g -d

此命令为开启本地调试 http://localhost:4000/

Yet@DESKTOP-9S7FNJU MINGW64 /g/github/blog
$ hexo s

访问YYYet.github.io.git即可