2017-05-13 65 views
2

我在Windows上使用git。幾天前,我爲git設置了代理:我沒有設置http.proxy後,Git客戶端仍然嘗試使用代理

git config --global http.proxy http://...... 
git config --global https.proxy http://..... 

今天我的代理服務器已關閉。我必須解除它。但git客戶端仍然嘗試在未設置它的情況下連接代理。

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

的錯誤是

致命的:無法訪問 'https://github.com/gogits/gogs.git/':無法 連接到代理服務器的8080端口:壞訪問

任何人知道如何解決這個問題。

回答

2

可能是你有在本地配置代理,嘗試運行以下命令:

git config --unset http.proxy 
git config --unset https.proxy 

,並確認在配置文件中設置的變量,它們的值,爲本地和全球:

git config --global --list 
git config --local --list 
相關問題