搭建hexo博客
安装hexo
按顺序执行如下命令
1 | npm install -g hexo-cli # 安装hexo |
访问 http://localhost:4000 ,就能看到网站效果
更换主题
1 | git clone https://github.com/next-theme/hexo-theme-next.git themes/next |
找到页面_config.yml,把theme: landscape修改为theme: next
然后就能看到新的效果了
新建文章
1 | hexo new "My New Post" # 新建文章 |
部署到git
找到页面_config.yml,划到页面最后,把xxx修改为自己的git地址
1 | deploy: |
部署命令
1 | hexo d # 部署项目 |