使用git从一些开源的项目下载源代码,经常会遇到被封的情况。
如果是 git clone http:// 或 git clone https:// 的话直接把代理服务器加到环境变量就可以了:
$ export http_proxy="http://username:password@127.0.0.1:9999/" $ export https_proxy="http://username:password@127.0.0.1:9999/"
or
$ export http_proxy="http://127.0.0.1:9999/" $ export https_proxy="http://127.0.0.1:9999/"
本文转自JustRun博客园博客,原文链接:http://www.cnblogs.com/JustRun1983/archive/2012/10/25/2738174.html,如需转载请自行联系原作者