web-dev-qa-db-ja.com

gitからプロキシを削除するにはどうすればよいですか?

Pull、Push、またはcloneを試行するたびにgitがスタックする.

前回このコマンドをプロキシに使用したとき:

git config --global http.proxy 172.16.0.2:8080

私はこれらのコマンドを試します:

git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy

しかし、リポジトリを複製するとき、またはプルまたはプッシュしたいときに、この応答を受け取ります!

badar:DSA Lab Tasks$ git clone https://github.com/badarshahzad/SEGP_Group10.git
Cloning into 'SEGP_Group10'...
fatal: unable to access 'https://github.com/badarshahzad/SEGP_Group10.git/': Failed to connect to 172.16.0.2 port 8080: Connection timed ou
3
badarshahzad

これらのコマンドを使用した後

git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy

これらの2つのコマンドは、--unset the proxyの後に機能します

3
badarshahzad

このコマンドを使用して、定義されているすべてのプロキシのリストを取得し、--unsetを使用してそれらを無効にします。

git config --global -l

次のコマンドで設定解除

git config --global --unset http.proxy
2
Pooja Khatri

以下の環境変数も削除する必要があります。

HTTPS_PROXY= http://10.55.20.71:128
HTTP_PROXY= http://10.55.20.71:128

ターゲットは存在しません: here。

サーバーは404エラーで応答しました:

404 Not Found

The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable. 

404エラーの意味の原因: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

0
Elder Geek