建立 github資料庫
登入 github.com後,新增一個資料庫做為 hexo的儲存空間,我們會使用這個資料庫發布部落格。
- 右上方點擊 New repository
- 在 Repository name欄位中輸入
你的github帳號.github.io
- 選擇 Public
- 點擊 Creat repository
- 點擊此資料庫的 Setting
- 在 Setting的頁面中找到名為 GitHub Pages的標題
- 在 GitHub Pages的選項中,找到子標題 Source,將第一個選項改為 master
- 選擇 master後,會發現上面一則通知,它會是
Your site is published at https://你的github帳號.github.io
修改 hexo設定檔
建立好 github的資料庫後,接著我們回到 hexo底下的 _config.yml
,我們要修改發布時會用到的資訊。
1 | # URL |
部屬 (Deploy)
完成上述兩個部分後,讓我們重新產生 hexo的靜態檔案,就能將寫好的文章上傳了。
這裡還需要再輸入一個指令,npm install --save hexo-deployer-git
,這樣才能將 hexo一鍵部屬到 github上。
- 輸入
hexo clean
,可縮寫hexo cl
- 輸入
hexo generate
,可縮寫hexo g
- 輸入
hexo server
,可縮寫hexo s
- 輸入
hexo deploy
,正式將文章上傳至網路空間 - 在網址列輸入 https://你的github帳號.github.io,看是否成功