标签:需要 hexo 源码修改 lin yml git status 流程 nbsp
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" 发布草稿
配置好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 中查看
标签:需要 hexo 源码修改 lin yml git status 流程 nbsp
原文地址:https://www.cnblogs.com/petewell/p/11445348.html