Hexo でひさびさに deploy したらパーミッションエラー

エラー内容

hexo d -g すると以下エラーが出た。

1
2
Error: Permission denied (publickey).
fatal: Could not read from remote repository.

解決方法

以下の stack overflow を参考に、_config.yml を変更して解決した。
Permission denied (publickey) fatal: Could not read from remote repository. while cloning Git repository

1
2
3
4
5
deploy:
type: git
- repo: '[email protected]:hogehoge/fugafuga.github.io.git'
+ repo: 'https://github.com/hogehoge/fugafuga.github.io.git'
branch: master

以上