美文网首页Github Sellection
Github - localhost port 1080:

Github - localhost port 1080:

作者: 消沉沉 | 来源:发表于2017-04-11 10:07 被阅读28次

2017年04月11日10:01:09

错误日志:

 Cloning into '.'... fatal: unable to access 
 'https://github.com/******/******.git/': Failed to connect to 
 localhost port 1080: Connection refused (128)

原因:

这个是因为本地设置了代理 localhost port:1080 我们只要删除代理就可以;

解决:

打开终端(我的Mac系统,Windows大同小异)

  1. 首先查看是否有设置代理:

    git config --global http.proxy 
    
  2. 如果有设置就取消代理:

    git config --global --unset http.proxy 
    

这样就可以了。

相关文章

网友评论

    本文标题:Github - localhost port 1080:

    本文链接:https://www.haomeiwen.com/subject/bejyattx.html