Hexo博客同步步骤
博客同步步骤
- 在新电脑上拉取hexosync分支代码
- 安装nodejs(nvm),git
- 安装Hexo和Git插件
1
2
3
4
5
6
7
8npm install -g hexo-cli
npm install hexo-deployer-git --save
// 永久链接插件
npm install hexo-abbrlink --save
// Google SEO优化
npm install hexo-generator-sitemap --save
// BaiDu SEO优化
npm install hexo-generator-baidu-sitemap --save - 根据package.json安装依赖
1
npm i
- 运行
hexo g
,渲染生成,运行hexo s
,预览网站 - 运行
hexo new post
编写新文章,或者修改博客其他内容 - 将新内容提交推送到Github,并运行
hexo g -d
进行部署 - 新内容自动部署到Github的main分支, 在
codingyourambition.github.io
查看内容
Hexo博客同步步骤
http://s1mplecode.com/sync.html