0%

Hexo教學(五) 部署文章至 Github Page

建立 github資料庫

登入 github.com後,新增一個資料庫做為 hexo的儲存空間,我們會使用這個資料庫發布部落格。

  1. 右上方點擊 New repository
  2. 在 Repository name欄位中輸入 你的github帳號.github.io
  3. 選擇 Public
  4. 點擊 Creat repository
  5. 點擊此資料庫的 Setting
  6. 在 Setting的頁面中找到名為 GitHub Pages的標題
  7. 在 GitHub Pages的選項中,找到子標題 Source,將第一個選項改為 master
  8. 選擇 master後,會發現上面一則通知,它會是
    Your site is published at https://你的github帳號.github.io

修改 hexo設定檔

建立好 github的資料庫後,接著我們回到 hexo底下的 _config.yml,我們要修改發布時會用到的資訊。

1
2
3
4
5
6
7
8
9
# URL
url: https://你的github帳號.github.io

# Deployment
deploy:
type: git
repo: https://github.com/你的github帳號/你的github帳號.github.io.git
branch: master
message: 'hexoblog'

部屬 (Deploy)

完成上述兩個部分後,讓我們重新產生 hexo的靜態檔案,就能將寫好的文章上傳了。
這裡還需要再輸入一個指令,npm install --save hexo-deployer-git,這樣才能將 hexo一鍵部屬到 github上。

  1. 輸入 hexo clean,可縮寫 hexo cl
  2. 輸入 hexo generate,可縮寫 hexo g
  3. 輸入 hexo server,可縮寫 hexo s
  4. 輸入 hexo deploy,正式將文章上傳至網路空間
  5. 在網址列輸入 https://你的github帳號.github.io,看是否成功

參考來源

  1. Ray - 試著學 Hexo - 部署你的第一個部落格