mac上Hexo+Github 搭建属于自己的博客(中)

前言

这是系列文章,在环境配置和本机部署完成后接下来就要申请github账号并配置了,事不宜迟动手吧~~~

主要步骤

  • 申请github账号
  • 配置github账号
  • 本地博客部署到github上

申请github账号

  • 到github官网点击Sign up for GitHub申请账号
    github首页

配置github账号

  • 新建repository并命名,最后Create repository


    mac上Hexo+Github 搭建属于自己的博客(中)_第1张图片
    new repository
mac上Hexo+Github 搭建属于自己的博客(中)_第2张图片
Paste_Image.png

本地博客部署到github上

  • 编辑_config.yml配置文件
    Bolg文件下有_config.yml文件,开始编辑
mac上Hexo+Github 搭建属于自己的博客(中)_第3张图片
_config.yml

修改后是这样:

deploy:
  type: git
  repository: https://github.com/aloow/aloow.github.io.git
  branch: master```
repository填写刚刚新建的github repository,如图
![repository](http://upload-images.jianshu.io/upload_images/1292402-edc8b29bbcae06a3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
##本地博客部署到github上
* 终端上输入`npm install hexo-deployer-git --save`

$ npm install hexo-deployer-git --save
[email protected] /Users/waqing/Desktop/Bolg
└── [email protected] ```

  • 接着输入hexo deploy就可以把博客部署到github上
$ hexo deploy
INFO  Deploying: git
INFO  Setting up Git deployment...
.
.
.
...
To https://github.com/aloow/aloow.github.io.git
 * [new branch]      HEAD -> master
Branch master set up to track remote branch master from https://github.com/aloow/aloow.github.io.git.
INFO  Deploy done: git```
* 想了解Hexo配置文件可以看[Hexo中文网站](https://hexo.io/zh-cn/docs/configuration.html)这里放张截图:

![Paste_Image.png](http://upload-images.jianshu.io/upload_images/1292402-0ce23b3568cb9112.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
* 最后浏览器中打开[https://aloow.github.io/](https://aloow.github.io/),就可以看到个人博客了

##总结
接下来要对部署完的博客进行润色,后面会介绍几个好看的博客主题以及如何编写和发布博客

如果本篇博文对你有帮助,我会很开心因为觉得没白写哈哈~~如果有错可以评论上指出,感谢每一位点开博文的朋友~




你可能感兴趣的:(mac上Hexo+Github 搭建属于自己的博客(中))