通过127.0.0.1:8087配置git代理

时间:2011-10-02 14:40:43

标签: git proxy

我不能克隆克隆https://code.google.com/my-repo, 所以我想通过我的本地客户端代理127.0.0.1:8087设置git。 怎么配置? 谢谢。

1 个答案:

答案 0 :(得分:3)

在克隆之前尝试设置https_proxy环境变量。例如:

export https_proxy=127.0.0.1:8087
git clone https://wherever/whatever.git

...正如this question的答案和GitHub's announcement of Smart HTTP support的评论中所建议的那样。