Hello Hexo

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

$ hexo new "My New Post"

More info: Writing

Run server

$ hexo server

More info: Server

Generate static files

$ hexo generate

More info: Generating

Deploy to remote sites

$ hexo deploy

More info: Deployment


多设备使用Hexo

通过原电脑创建hexo分支

// git初始化
git init
// 新建分支并切换到新建的分支
git checkout -b 分支名
// 添加所有本地文件到git
git add .
// git提交
git commit -m "提交说明"
// 文件推送到hexo分支
git push origin hexo

在新电脑上搭建hexo博客

// 克隆分支到本地
git clone -b hexo https://github.com/mengepeng/mengepeng.github.io.git
// 进入博客文件夹
cd mengepeng.github.io
// 安装依赖
npm install

编辑并更新博客

每次编辑之前先拉取Github上hexo分支的源文件到本地,进行合并

git pull origin hexo

编辑之后把静态文件提交到主分支master上,源文件提交到hexo分支。

// 博文提交到master分支
hexo clean && hexo g && hexo d
// 源文件提交到hexo分支
// 添加源文件
git add .
// git提交
git commit -m "update info"
// push源文件到Github的hexo分支
git push origin hexo


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!