美文网首页iOS开发iOS Developer
mac上Hexo+Github 搭建属于自己的博客(中)

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

作者: 绍清_shao | 来源:发表于2017-02-11 18:42 被阅读141次

    前言

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

    主要步骤

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

    申请github账号

    配置github账号

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


      new repository
    Paste_Image.png

    本地博客部署到github上

    • 编辑_config.yml配置文件
      Bolg文件下有_config.yml文件,开始编辑
    _config.yml

    修改后是这样:

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

    $ npm install hexo-deployer-git --save
    hexo-site@0.0.0 /Users/waqing/Desktop/Bolg
    └── hexo-deployer-git@0.2.0 ```

    • 接着输入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](https://img.haomeiwen.com/i1292402/0ce23b3568cb9112.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    * 最后浏览器中打开[https://aloow.github.io/](https://aloow.github.io/),就可以看到个人博客了
    
    ##总结
    接下来要对部署完的博客进行润色,后面会介绍几个好看的博客主题以及如何编写和发布博客
    
    如果本篇博文对你有帮助,我会很开心因为觉得没白写哈哈~~如果有错可以评论上指出,感谢每一位点开博文的朋友~
    
    
    
    
    

    相关文章

      网友评论

        本文标题:mac上Hexo+Github 搭建属于自己的博客(中)

        本文链接:https://www.haomeiwen.com/subject/qztoittx.html