一、准备工作
1.下载Node.js Node.js下载
2.下载Git Git下载
二、安装Hexo
1.打开cmd,输入如下命令:
npm install -g hexo-cli
三、建站
1.创建一个空文件夹,我的文件夹路径在【E:\software\nodejs\node_global\node_modules\blog】
2.切换路径到文件夹下 cd E:\software\nodejs\node_global\node_modules\blog
3.初始化 【hexo init】
4.完成后文件夹目录结构如下:
5.上传到github上
(1)创建一个github帐号
(2)创建一个repo,名称为yourname.github.io
, 其中yourname是你的github名称,选择Create repository,如图所示
(3)打开git,配置github账户信息
git config --global user.name [github账户名]
git config --global user.email [github邮箱]
(4)生成ssh
ssh-keygen -t rsa -C [github邮箱]
(5)在【C:\Users\用户名\.ssh】文件夹下找到生成的ssh,添加到github帐号中
z
(6)打开cmd,进入blog目录,输入如下命令:
hexo clean
hexo generate
hexo deploy
(7)上传到github