如何让 Git 使用 HTTP 代理服务器

使用git从一些开源的项目下载源代码,经常会遇到被封的情况。

如果是 git clone http:// 或 git clone https:// 的话直接把代理服务器加到环境变量就可以了:

$ export http_proxy="http://username:[email protected]:9999/"

$ export https_proxy="http://username:[email protected]:9999/"

or

$ export http_proxy="http://127.0.0.1:9999/" $ export https_proxy="http://127.0.0.1:9999/"

你可能感兴趣的:(http)