搭建hexo博客

安装hexo

按顺序执行如下命令

1
2
3
npm install -g hexo-cli       # 安装hexo
hexo init # 初始化一个博客
hexo s # 预览

访问 http://localhost:4000 ,就能看到网站效果

更换主题

1
git clone https://github.com/next-theme/hexo-theme-next.git themes/next

找到页面_config.yml,把theme: landscape修改为theme: next
然后就能看到新的效果了

新建文章

1
2
3
4
hexo new "My New Post"        # 新建文章
hexo clean # 执行此命令后继续下一条
hexo g # 生成博客目录
hexo s # 本地预览

部署到git

找到页面_config.yml,划到页面最后,把xxx修改为自己的git地址

1
2
3
4
deploy:
type: git
repo: https://github.com/xxx/xxx.github.io.git
branch: main

部署命令

1
hexo d                        # 部署项目