码迷,mamicode.com
首页 > 其他好文 > 详细

Hexo使用

时间:2019-09-02 11:50:37      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:需要   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"  发布草稿

配置文档在_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 中查看

原文:大专栏  Hexo使用


Hexo使用

标签:需要   hexo   源码修改   lin   yml   git   status   流程   nbsp   

原文地址:https://www.cnblogs.com/petewell/p/11445348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!