美文网首页Hexo
同时在GitHub和Coding上搭建Hexo博客

同时在GitHub和Coding上搭建Hexo博客

作者: UnaEyre | 来源:发表于2016-11-23 00:03 被阅读127次

    之前写了一篇在Coding上搭建Hexo博客,现在来写同时在GitHub和Coding上搭建Hexo博客。

    在GitHub上搭建Hexo博客跟在Coding上差不多,但还是有点细微差别。这里主要介绍下区别,详细的参考在Coding上搭建Hexo博客

    • 在GitHub上创建名为username.github.io的仓库(repository),username就是你的用户名,仓库名要按照这种形式,这是固定格式。

    • 创建好仓库之后修改_config.yml里面的配置

        deploy:     
          type: git
          repo: git@github.com:username/username.github.io.git
          branch: master
      
    • 执行下面命令,遇到问题可以到在Coding上搭建Hexo博客里面找

         hexo g
         hexo d
      
    • 在GitHub上搭建Hexo就好啦,打开 https : // username.github.io /就可以访问自己的博客啦~

    • 现在分别在GitHub和Coding上搭建好博客了,要想同时搭建,只需要修改_config.yml里面的配置

        deploy:     
          - type: git
            repo: git@github.com:username/username.github.io.git
            branch: master        
          - type: git
            repo: git@git.coding.net:username/username.git
            branch: master
      
    • 注意前面的符号-后面有一个空格,不要漏了,我自己就因为漏了导致折腾了半天~~~

    写下来才觉得很简单,可是在搭建过程中真的是踩了好多坑,因为换了另一个账号重新完整再搭一遍,导致切换的时候有些配置没改,比如.ssh里的~

    对啦,有时候步骤全对了可就是没成功,也不一定就是自己方法错了,最后希望各位小伙伴都能搭好属于自己的博客~

    相关文章

      网友评论

        本文标题:同时在GitHub和Coding上搭建Hexo博客

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