在 Ubuntu 上通过代理使用 Git

在 Ubuntu 上通过代理使用 Git

我在 Ubuntu 14.04 上使用终端执行 git clone 。在执行此操作之前,我将 git 设置为使用命令代理:。但是,当我尝试在 git 上克隆我的存储库时,我收到了此错误消息。需要帮助。git clone [email protected]:myusername/myrepo.gitgit config --global http.proxy proxyserver:port

Cloning into 'MY REPO'... ssh_exchange_identification: Connection closed by remote host fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

答案1

如果您尝试使用带有 HTTP 代理的 SSH 连接,则它将无法工作。Github 也通过 HTTPS 提供 Git。因此请尝试:

git clone https://github.com/myusername/myrepo.git

相关内容