hexo备份小技巧 发表于 2017-01-21 | 分类于 Tools | 提交到github上备份: 12345678910111213cd blog/hexo# 初始化仓库git initgit 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 更换环境时: 12345678910111213141516#1.安装git(配置git),nodejs;其中nodejs会出现权限,需要管理员运行#2.克隆到本地git clone https://github.com/用户名/用户名.github.io.git hexocd hexo git checkout hexo#3.安装各种npm包npm config set registry https://registry.npm.taobao.orgnpm install -g hexo-clinpm installnpm install hexo-deployer-git --save#用于markdown插入图片,首先确认 _config.yml 中有 post_asset_folder:truenpm install https://github.com/CodeFalling/hexo-asset-image --save#4 部署hexo cleanhexo generatehexo deploy 如果对您有价值,看官可以打赏的!