GitHub Pages搭建博客(二)——环境搭建

安装Git和Node.js(Windows版)

安装Git

下载:https://git-scm.com/download/win

enter description here

选择32 / 64位,下载后双击安装,然后啥都别管,一路Next走到黑!

enter description here

完事之后…… 任意目录鼠标右键Git Bash Heregit --version 会看到Git版本信息

enter description here

enter description here

安装Node.js

下载链接:https://nodejs.org/en/

安装同上,一路NEXT

enter description here

P.s 挂代理加速下载

安装Hexo

D盘(其他盘也可以)创建文件夹F:/Hexo右键鼠标,点击Git Bash Here,输入以下命令安装:

1
2
npm install hexo-cli -g 
npm install hexo-deployer-git --save

enter description here

enter description here

配置ssh密钥

SSH密钥可以让本地git项目与远程的Github建立联系。
密钥文件保存目录:C:\Users\xxx\ .ssh

创建密钥

1
ssh-keygen -t rsa -C "xx@xx.xx"  # 替换成自己的邮箱

enter description here

复制密钥到剪切板(也可以进入C:\Users\xxx\ .ssh\id_rsa.pub文件复制)

1
clip < ~/.ssh/id_rsa.pub  # 此时密钥已经通过命令复制好了

登录 GitHub

enter description here

enter description here

enter description here

enter description here

初始化Hexo

1
2
hexo init
hexo s

enter description here

浏览器打开 http://localhost:4000

enter description here

最后

至此,博客搭建已经成功了一大半了!剩下的还有本地实时同步到GitHub Pages,优化界面等等。

———— The End ————