轮回社主页。
# 新建目录&初始化
hexo init
mkdir -p ./source/_posts
mkdir -p ./themes/butterfly
# clone 主题 & 博客
#自用主题
git clone -b mine https://github.com/Edge-coordinates/hexo-theme-butterfly.git ./themes/butterfly
# 官方主题
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git
# 博客路径
git clone https://github.com/ICS-Community/ics_club_bolg.git ./source/_posts
# 安装插件
npm install hexo-renderer-pug hexo-renderer-stylus hexo-generator-search hexo-abbrlink --save
# 问题修复命令
npm install --save hexo-renderer-jade hexo-generator-feed hexo-generator-sitemap hexo-browsersync hexo-generator-archive
# 服务器的博更新(原程覆盖本地)
git pull --ff-only
git fetch --all
git reset --hard origin/master
git pull