zoukankan      html  css  js  c++  java
  • GitHub 搭建博客,出现 hexo g -d 报错

      想搭建一个个人博客,但是在将博客推送到Github上的时候在git bash 下运行hexo g -d命令出现错误:

      错误如下:

     fatal: HttpRequestException encountered.
       ▒▒▒▒▒▒▒▒ʱ▒▒▒▒
    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/do                                                                     
    cs/troubleshooting.html
    Error: fatal: HttpRequestException encountered.
               ʱ   
    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
        at ChildProcess.<anonymous> (F:loghuahua462.github.io ode_moduleshexo-u                                                                    
     tillibspawn.js:37:17)
        at emitTwo (events.js:126:13)
        at ChildProcess.emit (events.js:214:7)
        at ChildProcess.cp.emit (F:loghuahua462.github.io ode_modulescross-spaw                                                                     
    nlibenoent.js:40:29)
        at maybeClose (internal/child_process.js:925:16)
        at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5) 
     
      解决方案:
      首先在“你GitHub注册用户名.github.io”本地文件夹下有一个名为“_config.yml”的配置文件,这个称为站点配置文件,使用NotePad++打开并拉到文件最后,将:
        
    deploy:
      type: git 
      repo: https://github.com/你GitHub注册用户名/你GitHub注册用户名.github.io.git 
      branch: master

      改为:

    deploy:
      type: git 
      repo: git@github.com:你GitHub注册用户名/你GitHub注册用户名.github.io.git 
      branch: master

      即可;亲测有效

  • 相关阅读:
    笔记:Jersey REST API 设计
    笔记:MyBatis 日志显示-log4j2
    笔记:MyBatis 其他特性
    笔记:MyBatis 动态SQL
    笔记:MyBatis 使用 Java API配置
    【JAVA】辨析:replace,replaceAll,replaceFirst
    【学习总结】计算机网络-纠错编码之海明码or汉明码
    【学习总结】计算机网络-检错编码之奇偶校验码and循环冗余码CRC
    【学习总结】快速上手Linux玩转典型应用-第7章-WebServer安装和配置讲解
    【问题解决方案】visudo: /etc/sudoers is busy, try again later
  • 原文地址:https://www.cnblogs.com/huahua12/p/8491805.html
Copyright © 2011-2022 走看看