hexo发布
发布hexo
发布到github上一个账号只能发布一次,创建新的github库名字必须是
<github用户名>.github.io
配置到github
在_config.yml中找到deploy
中添加一下内容
deploy:
type: git
repository: https://github.com/<github用户名>/<github用户名>.github.io.git
branch: master
下载发布插件
npm install hexo-deployer-git --save
发布
hexo g #生成静态页
hexo d #发布博客
最后修改于 2017-04-30