Luckylau's Blog

hexo备份小技巧

提交到github上备份:

1
2
3
4
5
6
7
8
9
10
11
12
13
cd blog/hexo
# 初始化仓库
git init
git add .
git commit -m "init"
# 建一个分支
git checkout -b hexo
# 删除本地的master分支
git branch -d master
# 添加远程
git remote add origin https://github.com/用户名/用户名.github.io.git
# 保存
git push -u origin hexo

更换环境时:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#1.安装git(配置git),nodejs;其中nodejs会出现权限,需要管理员运行
#2.克隆到本地
git clone https://github.com/用户名/用户名.github.io.git hexo
cd hexo
git checkout hexo
#3.安装各种npm包
npm config set registry https://registry.npm.taobao.org
npm install -g hexo-cli
npm install
npm install hexo-deployer-git --save
#用于markdown插入图片,首先确认 _config.yml 中有 post_asset_folder:true
npm install https://github.com/CodeFalling/hexo-asset-image --save
#4 部署
hexo clean
hexo generate
hexo deploy
Luckylau wechat
如果对您有价值,看官可以打赏的!