无法使用 git 克隆 link
Unable to clone link using git
每当我尝试使用以下代码在 git 中克隆一个 repo 时:
git clone https://github.com/sudhsudhi/coursera_test.git
我收到以下错误:
enter fatal: unable to access 'https://github.com/sudhsudhi/coursera_test.git/': Failed to connect to github.com port 443: Connection refused
为什么会出现此错误以及如何更正它?
我猜它与防火墙有关,或者 proxy.I 是使用 git 的新手,我不确定。
我正在使用代理服务器。
尝试通过执行以下操作更新全局 git 配置文件:
git config --global http.proxy http://user:password@proxy:xxxx
替换成你的用户名、密码,xxxx是端口号。
每当我尝试使用以下代码在 git 中克隆一个 repo 时:
git clone https://github.com/sudhsudhi/coursera_test.git
我收到以下错误:
enter fatal: unable to access 'https://github.com/sudhsudhi/coursera_test.git/': Failed to connect to github.com port 443: Connection refused
为什么会出现此错误以及如何更正它? 我猜它与防火墙有关,或者 proxy.I 是使用 git 的新手,我不确定。 我正在使用代理服务器。
尝试通过执行以下操作更新全局 git 配置文件:
git config --global http.proxy http://user:password@proxy:xxxx
替换成你的用户名、密码,xxxx是端口号。