0%

Hello World

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

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

一些命名规范

项目命名 全部以小写字母命名,以中划线分割。如my-project
目录命名 小写字母加下划线,如lib_tomcat。

个人备份习惯

1
2
3
4
5
6
hexo c
git add .
git commit -m "Backup"
git push
hexo g
hexo d

恢复博客

目前假设本地Hexo博客基础环境已经搭好:比如安装git
、nodejs、hexo安装…

克隆项目到本地

输入下列命令克隆博客必须文件

1
2
git clone https://gitee.com/muzihuaner/hexo.git
//https://gitee.com/muzihuaner/hexo.git换成你的

恢复博客

在clone下来的那个文件夹里面执行

1
2
3
npm install hexo-cli
npm install
npm install hexo-deployer-git

在此不需要执行hexo init这条指令,因为不是从零搭建起新博客。

然后就完成了,你如果想也可以

1
2
3
hexo clean
hexo g
hexo d