我在Windows机器上试图
git clone --depth = 14 https://github.com/angular/angular-phonecat.git
我无法连接到github 443错误
然后我通过以下命令
更新了git config中的http.proxy密钥git config --global http.proxy http://mycompany.proxy.name/my-company.com/abc.pac
仍然失败并出现以下错误
D:\>git clone --depth=14 https://github.com/angular/angular-phonecat.git
Cloning into 'angular-phonecat'...
fatal: unable to access 'https://github.com/angular/angular-phonecat.git/': Failed connect to github.com:1080; No error
这里有运气吗?
答案 0 :(得分:0)
我猜你的.netrc是不正确的还是什么? 尝试从.netrc中删除信息并首先克隆(因为它是一个公共回购)。
如果它不是GitHub服务器问题,它可能是您的防火墙。
和/或您的代理(git config --global http.proxy http://user:password@proxy:xxx
)。
同时检查:GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error