这篇博客是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.
欢迎来到Hexo!这是你的最开始发布的博客。点击 documentation 以获取更多信息。如果你在使用Hexo的过程遇到任何问题,你可以在 troubleshooting 里找到答案,或者你也可以在 GitHub 上咨询我。

Quick Start

快速开始

Create a new post

创建一篇新发布的博客

1
$ hexo new "My New Post"

More info: Writing
更多信息: Writing

Run server

运行服务器

1
$ hexo server

实际上,这个命令可以简化为:

1
$ hexo s

More info: Server
更多信息: Server

Generate static files

生成静态文件

1
$ hexo generate

同样的,这个命令可以简化为:

1
$ hexo g

More info: Generating
更多信息: Generating

Deploy to remote sites

上传到远程网站

1
$ hexo deploy

同样的,这个命令可以简化为:

1
$ hexo d

More info: Deployment
更多信息: Deployment

以上的内容是Hexo框架下博客运营及更新的一般方法和命令符教程。