备份步骤
- 在博客目录下,创建git仓库
git init
- 创建
.gitignore
文件
文件内容:1
2
3
4
5
6
7.DS_Store
Thumbs.db
db.json
*.log
node_modules/
public/
.deploy*/ - 将本地与远程仓库关联
git remote add origin git@github.com:sjtu-xx/sjtu-xx.github.io.git
- 设置hexo为默认分支
- 本地新建hexo分支
git checkout -b hexo
创建新分支 - 上传至github
1
2
3git add .
git commit -m "blabla"
git push origin hexo - hexo g -d 发布博客
恢复步骤
git clone https://github.com/sjtu-xx/sjtu-xx.github.io.gito
- 在克隆的文件夹下输入
npm install hexo-cli
,npm install
,npm install hexo-deployer-git