搭建hexo静态博客
Posted xueyubao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建hexo静态博客相关的知识,希望对你有一定的参考价值。
使用hexo搭建博客,并将博客部署到github
需要的工具
正式开始
- 在任意目录下新建一个文件夹,如blog,在该文件夹下右键打开git bash here,执行
npm install -g hexo-cli
,安装hexo - 执行
hexo init
- 执行
npm install
- 根据提示依次执行
npm audit fix
和npm audit fix --force
- 执行
hexo g
,生成博客 - 执行
hexo s
后,可以在 http://localhost:4000 上预览博客 - 在github上新建一个仓库,命名为username.github.io,其中username必须为你github的用户名
- 执行
npm install hexo-deployer-git --save
,安装deployer-git,用来将hexo推送到github - 修改配置文件:在文件夹中找到并打开
_config.yml
文件,将文件末尾的deploy部分更改如下,repo: 后填写你新建的github仓库的地址。注意: 请使用英文冒号以及冒号后要有空格
deploy:
type: git
repo: https://github.com/Tuzilow/Tuzilow.github.io.git
branch: master
- 分别执行
hexo clean
,hexo g
,hexo d
,即可在 https://username.github.io (username为你的用户名)中看到自己的博客
添加新的文章
- 执行
hexo new "文章标题"
,会在\source\_posts
下生成一个md文件,在该文件中编辑文章即可 - 写完文章后,分别执行
hexo clean
,hexo g
,hexo d
,即可将文章发布成功,如果网站上没有出现文章可以稍等一会儿再刷新。
以上是关于搭建hexo静态博客的主要内容,如果未能解决你的问题,请参考以下文章