关于hexo无法上传到github 的解决办法

现象描述:

hexo d 后 提示github配置出现了问题。

$ hexo d
INFO Deploying: git
INFO Clearing .deploy folder...
...
...
...
...
bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': No error
FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html
Error: bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': No error

解决方案

_config.yml中的repository:https://github.com/abc/abc.github.io.git这个地址改为git@github.com:abc/abc.github.io.git 即可

0%