将 hexo 上传到 GitHub
方法一:使用 hexo 插件自动上传
创建 GitHub 仓库
首先,我们创建一个新的 GitHub 仓库
修改 config.yml
打开站点的配置文件,将默认的 http://yoursite.com
替换为您自己的网址
将配置文件最下方的 deploy 替换为
1 | deploy: |
安装插件
1 | npm install hexo-deployer-git --save |
部署
1 | hexo g && hexo d |
接着您便可以访问您的网站来查看 hexo 博客
方法二:手动上传整个文件夹
命令行输入
1 | git init |
在新产生的.gitignore
中填写以下内容
1 | node_modules/ |
添加远端仓库
1 | git remote add origin https://github.com/yourname/yourrepo.git |
推送
1 | git push -u origin master |