使用 Hexo 來寫 Blog(上傳github)

node.js Hexo

本篇主要紀錄載上傳github的設定

上一篇主要是介紹安裝的過程,本篇主要是紀錄上傳到github過程

上傳 github 的設定

在上傳前,請先開啟根目錄下 _config.yml 做一些基本的設定

#URL 設定 ( : 後面要有空格 )
url: https://github.com/你的github名稱
root: /repository的名稱/
#Deployment 設定 ( : 後面要有空格 )
deploy:
    type: github
    repository: https://github.com/你的github名稱/kumahexo.git
    branch: gh-pages (如果是用github主頁就不用)

完成以後,在 commandLine (mac是終端機),移動到目前 HEXO 的資料夾下,

1
cd 你的資料夾名稱

輸入

1
2
3
sudo hexo generate
或是簡寫
sudo hexo g

HEXO 就會開始將資料 build 成可上傳的檔案,這時 HEXO 內就會多出 public 的文件夾 ,最後在執行上傳的動作

1
2
3
sudo hexo deploy
或是簡寫
sudo hexo d

就會開始上傳至 github 了!!


Reference
Share