同時在GitHub和Coding上搭建Hexo部落格

weixin_34208283發表於2016-11-23

之前寫了一篇在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裡的~

對啦,有時候步驟全對了可就是沒成功,也不一定就是自己方法錯了,最後希望各位小夥伴都能搭好屬於自己的部落格~

相關文章