操作步骤
-
安装git和nodejs,并在github创建仓库
-
以管理员权限打开cmd,并执行
npm install -g hexo-cli
安装hexo客户端 -
在需要创建博客的目录下执行
hexo init blog
-
cd blog
并执行npm install
-
编辑blog/_config.yml文件:
1
2
3
4deploy:
type: git
repository: https://github.com/Vae1997/Vae1997.github.io.git
branch: master -
执行
npm install hexo-deployer-git --save
,确保可以找到git命令 -
此时执行
hexo g -d
后即可访问https://vae1997.github.io/ -
可执行如下命令避免每次提交时都需要输入用户名和密码
1
2git config --global user.name "Vae1997"
git config --global user.email "844821239@qq.com"
踩坑记录
误提交大于100M的文件
🔴执行hexo d后出现:this exceeds GitHub’s file size limit of 100.00 MB
需退回上一次的提交:参考大文件上传致Github报错
cd blog/.deploy_git
git log
查看上次提交- 复制第一个commit后的代码,执行
git reset xxxxx
- 再次查看提交记录,已经回滚到上一次