github创建项目
1 | 仓库名称: ${username}.github.io # username是github账号名称 |
参考第一期用hexo创建了项目blog,修改站点配置文件_config.yaml
1 | # Deployment |
安装hexo-Git部署插件
1 | npm install hexo-deployer-git --save |
部署到远程仓库chenqiaorui.github.io
1 | hexo clean # 删除public目录 |
绑定域名<可选>
第一步:dns服务器设置别名:mydomain.cn CNAME chenqiaorui.github.io
第二步: 登录GitHub,进入之前创建的仓库,点击settings,设置Custom domain,输入 mydomain.cn 域名
更换主题
将Next主题下载到blog目录的themes主题下的next文件夹中
1 | git clone https://github.com/iissnan/hexo-theme-next themes/next |
打开站点的_config.yml配置文件,修改主题为next。
1 | theme: next |
next主题有很多样式,可以用Pisces、Muse、Mist,在themes/next目录下,打开_config.yaml,配置:
1 | scheme: Pisces # 选用Pisces样式 |
(全文完)
原文链接: https://chenqiaorui.github.io/2023/05/18/第2期-hexo-github部署个人博客/
版权声明: 转载请注明出处.