无法在 ubuntu 上克隆 git 存储库

无法在 ubuntu 上克隆 git 存储库

在克隆 git 存储库时,我收到以下错误
无法连接到 github.com 端口 443:网络无法访问,而我能够在 Windows 计算机上克隆已编辑
-

 git clone https://github.com/Rishav09/Mywebsite.git

我收到以下错误

Cloning into 'Mywebsite'...
fatal: unable to access 'https://github.com/Rishav09/Mywebsite.git/':
Failed to connect to github.com port 443: Network is unreachable

答案1

是否有防火墙/代理限制访问?

您可以通过 SSH 进行克隆吗(注意:您需要一个 GitHub 帐户,并且需要将公共 SSH 密钥添加到您的个人资料中才能进行 SSH)。

git clone ssh://[email protected]/Rishav09/Mywebsite.git

相关内容