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端口:壞訪問
任何人知道如何解決這個問題。