年后回来,小白兔觉得不能再慵懒下去,打算立刻发了一篇博文以正视听,好不容易写完一篇绕过WAF的九种方法,按照往常的方法更新博客,结果报错:“fatal: could not read Username for ‘https://github.com‘: No error”。
问题
真的是大写的懵逼,啥也没动啊,咋过个年回来就出问题了呢,问题截图如下:
于是我折腾了很久终于找到了解决问题的方法。
解决方法
解决问题方法如下,亲测有效。
1.打开_config.yml,修改其中的deploy节点
原来的配置为:
deploy:
type: git
repo: https://github.com/{yourname}/{yourname}.github.io.git
branch: master
修改为如下:
deploy:
type: git
repo: https://{yourname}:{yourpassword}@github.com/{yourname}/{yourname}.github.io.git
branch: master
2.更新博客(素质三连)
hexo clean
hexo g
hexo d