Hexo创建博客

以下操作均在已完成 git、nvm、node.js、hexo的安装前提下

1、创建博客
$ hexo init xxxxxxx.github.io

执行成功后,会在 /Users/用户名/ 目录下创建出一个名为 xxxxxxx.github.io 的文件夹。

2、写博客

xxxxxxx.github.io/source/_posts目录下创建你的博客吧,例,如:创建一个名为FirstBlog.md的文件,最好使用Markdown编写,编写完成保存关闭。

3、启动测试服务器
$ cd ~./xxxxxxx.github.io
$ hexo server
// 终端输出
INFO  Start processing
INFO  Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
4、首次,安装自动部署发布工具
$ npm install hexo-deployer-git --save
5、发布
$ hexo clean && hexo g && hexo d

生成静态网页文件发布至我们的Github pages 中(首次会要求输入github账号及密码,输入即可。之后,每次把博客写完后,执行该命令即可发布)。

你可能感兴趣的:(Hexo创建博客)