使用hexo和github搭建博客

1 第一步:基础安装

安装git和nodejs

2 第二步:申请github账号

申请github账户并建立xxx.github.io项目

3 第三步:安装hexo

安装之前先改镜像地址,国内环境,你懂的

npm install -g cnpm --registry=https://registry.npm.taobao.org

安装hexo

cnpm install -g hexo-cli
cnpm install hexo --save

校验是否完成

hexo -v

初始化

hexo init

安装依赖

cnpm install

预览

hexo s -g

4 第四步: 管理

配置修改

#博客名称
title: 我的博客
#副标题
subtitle: 一天进步一点
#简介
description: 记录生活点滴
#博客作者
author: John Doe
#博客语言
language: zh-CN
#时区
timezone:

#博客地址,与申请的GitHub一致
url: http://elfwalk.github.io
root: /
#博客链接格式
permalink: :year/:month/:day/:title/
permalink_defaults:
...
#日期格式
date_format: YYYY-MM-DD
time_format: HH:mm:ss

#分页,每页文章数量
per_page: 10
pagination_dir: page

#博客主题
theme: landscape

#发布设置
deploy: 
  type: git
  #elfwalk改为你的github用户名
  repository: https://github.com/elfwalk/elfwalk.github.io.git
  branch: master

创建文章

hexo new "hello"

5 发布

安装hexo的git工具

cnpm install hexo-deployer-git --save

发布

hexo d -g

参考文章:零基础免费搭建个人博客-hexo+github

你可能感兴趣的:(使用hexo和github搭建博客)