1. 程式人生 > >搭建Hexo+Github獨立部落格

搭建Hexo+Github獨立部落格

#### 1.github建立倉庫

2區域輸入xxx.github.io(xxx為github使用者名稱)。

2.配置ssh

下載git,在gitbash中操作

$ cd ~/. ssh 檢查本機的ssh金鑰

如果提示No such file or directory 說明第一次使用。

$ ssh-keygen -t rsa -c “email address”

後面的回車預設即可。

3.新增ssh到github伺服器

找到剛生成的id_rsa.pub,複製裡面的所有文字。

開啟github官網,右上角頭像,setting->ssh and gpg keys->new ssh key

title不填,key內貼上。

4.測試是否連線成功

$ ssh -T [email protected]

5.完善個人資訊

$ git config --global user.name "xxxx"//使用者名稱

$ git config --global user.email "郵箱地址"//填寫自己的郵箱

6.安裝node.js

7.安裝hexo

npm install -g hexo

hexo -v //check

hexo資料夾裡找到__config.yml

冒號後面有空格,不要漏了。

安裝外掛。

$ npm install hexo-deployer-git –save

在想安裝的路徑右鍵 git bash

hexo init

hexo g

hexo s

瀏覽器localhost:4000即可看到預設主頁

開始部署

$ hexo g

$ hexo d

image

出現這個說明部署成功。

8.繫結域名

9.發文

在Hexo\source_posts建立md檔案即可。

可適當清理快取

$ hexo clean

10.下載主題

在__config.yml裡修改theme即可。