一、在github新建一个仓库
注意:新建的仓库名的域名必须和用户名一致,比如我github的用户名为fuxblog,那么我新建的仓库名必须是fuxblog.github.io
二、安装插件来实现一键部署
$ npm install hexo-deployer-git --save
三、在项目根目录下的_config.yml配置文件末尾做如下修改
deploy:
type: git
repo: https://github.com/fuxblog/fuxblog.github.io.git
branch: master
四、推送到github仓库
hexo d
执行完该命令后,就可以访问fuxblog.github.io来访问你的博客了