Github SSH 部署Hexo 发表于 2022-05-21 更新于 2022-05-22 分类于 Blog 阅读次数: 使用Github SSH Key来避免Hexo部署时输入账户密码 当hexo使用https方式连接Github时,每次执行hexo deploy都会提示你输入账户和密码,不胜其烦。下面使用ssh连接方式可以免除每次输入账户密码的过程,而且安全可靠。 修改_config.yml,将部署方式从https方式修改为ssh方式。 123456# Deployment## Docs: https://hexo.io/docs/deployment.htmldeploy: type: git repository: https://github.com/yaoelvon/yaoelvon.github.io.git branch: master 修改为 123456# Deployment## Docs: https://hexo.io/docs/deployment.htmldeploy: type: git repository: git@github.com:yaoelvon/yaoelvon.github.io.git branch: master 相关文章 Git常用命令 Git报错Could not resolve host Git检出分支报错问题 Hexo使用说明 如何在 Android TV 上设置和使用 ADB