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

Conclusion

Local Test

1
2
3
hexo clean
hexo generate #生成
hexo server #打开服务

or

1
hexo s -g #生成 启动本地服务,进行文章预览调试

Deploy Step

1
2
3
hexo clean
hexo generate #生成
hexo deploy #部署

or

1
hexo d -g

Add New MD File

add file in

```
1
2

in file title add this tag


layout: android
title: View 的事件体系
date: 2019-01-17 16:07:36

tags: android,view

`

More info: Deployment