git config proxy
The git config command is used to set configuration options for Git. To configure a proxy for Git, you can use the following command:
git config --global http.proxy <proxy-url>
Replace <proxy-url> with the URL of your proxy server. Make sure to include the protocol (e.g., http:// or https://) before the proxy URL.
For example, if your proxy server is http://proxy.example.com:8080, the command would be:
git config --global http.proxy http://proxy.example.com:8080
You can also configure a proxy for HTTPS connections by using the https.proxy option:
git config --global https.proxy <proxy-url>
After configuring the proxy, Git will use it for all HTTP or HTTPS connections made by Git
原文地址: https://www.cveoy.top/t/topic/hJuo 著作权归作者所有。请勿转载和采集!