Hexohexo学习

在macOS上使用Hexo+github构建自己的博客

2018-04-18  本文已影响10人  reezon

在macOS上安装Hexo

首先需要安装nodejs环境

然后运行

$ npm i -g hexo

初始化blog项目

新建一个目录,然后进入目录,运行

$ hexo init

在github上创建博客项目

在github上创建一个如下名字的项目

xxx.gihub.io

配置blog项目的发布方式

安装git发布插件

$ npm install hexo-deployer-git --save

打开文件 _config.xml , 编辑如下内容

deploy:
  type: git
  repo: https://github.com/YourgithubName/YourgithubName.github.io.git
  branch: master

本地运行

运行如下命令

$ hexo clean
$ hexo generate
$ hexo server

部署到github

运行如下命令

$ hexo clean
$ hexo generate
$ hexo deploy

就能自动发布到xxx.github.io了

上一篇下一篇

猜你喜欢

热点阅读