Hexo部署&域名绑定
参考 Hexo 官方文档
# Github pages 部署
在 GitHub 创建一个名为 username.github.io 的公共存储库,其中 username 是您在 GitHub 上的用户名(注意必须要对应上,否则无法使用)
在仓库界面点击 Code,复制仓库的 SSH 密钥
在博客根目录的 _config.yml 进行修改:
deploy: type: git # 类型填 git repo: <repository url> # 复制的 SSH 密钥 branch: main # 分支名称 message: # 提交信息可以自定义
more...


