第一步安装
npm install -g hexo-cli
第二步:建站
hexo init <folder>
cd <folder>
npm install
写文章
hexo new [layout] <title>
hexo new draft "测试"
写草稿
hexo new draft "测试draft" 写草稿
hexo publish draft "测试draft" 发布草稿
配置文件在_config.yml 中查看
配置好git仓库
deploy:
type: git
repo: git@github.com:DaiWenqi/DaiWenqi.github.io.git
生成静态
hexo generate
### 部署
hexo deploy
说明:一般生成文件跟静态连用 hexo generate –deploy 缩写 hexo g -d
备份源码流程
git init
git add 需要备份的文件
git commit -m 'hexo使用'
git push origin blog 关联 提交到远端仓库
检查源码修改并提交
git status
use "git add/rm <file>..." to update what will be committed
选择需要跟踪的文件git
git commit -m "描述" 提交到本地仓库
配置文件在_config.yml 中查看