1

有人如何调整heroku 工具带,即git 并使用代理服务器连接到heroku。我正在尝试连接,但它一直告诉我机器主动拒绝它访问。帮助

4

3 回答 3

2

您可以在 git bash 中使用以下命令设置 Git 代理。为 HTTP 和 HTTPS 代理设置。

git config --global http.proxy http://username:password@proxy.server.com:8080
git config --global https.proxy http://username:password@proxy.server.com:8080

//Replace username with your proxy username
//Replace password with your proxy password
//Replace proxy.server.com with the proxy domain URL.
//Replace 8080 with the proxy port no configured on the proxy server.

查看如何配置 Git 代理如何取消设置 Git 代理以获取更多详细信息

于 2015-12-01T13:21:29.617 回答
1

如果代理服务器需要身份验证,请按以下格式设置HTTP_PROXY和系统环境变量:HTTPS_PROXY

HTTP_PROXY = http://username:password@proxy.server.com:portNumber

HTTPS_PROXY = https://username:password@proxy.server.com:portNumber

于 2017-01-23T06:31:09.550 回答
0

使用 HTTP_PROXY 环境变量

例如 HTTP_PROXY= http://localhost:9999

于 2015-01-30T10:48:21.870 回答