Hexo推送提示输入账号密码问题

今天推送 Github Pages 博客发现需要输入账号密码,网页端检查SSH Keys 和本地检查公钥pub都没问题

最后通过搜索引擎助力,修改 https 方式为 git 方式,成功推送

方法:修改博客目录下的_config.yml文件配置(不是主题目录下的配置文件)

# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
  type: git
  # repo: https://github.com/kiraster/kiraster.github.io.git
  # 20221201发现使用https方式需要输入验证账号密码,修改为git方式后正常推送
  repo: git@github.com:kiraster/kiraster.github.io.git
  branch: master