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大同小异)
-
首先查看是否有设置代理:
git config --global http.proxy
-
如果有设置就取消代理:
git config --global --unset http.proxy
这样就可以了。