How to remove a proxy setting in Git
In this tutorial, we are going to learn about how to remove an http, https proxy setting in Git.
Removing the git proxy globally
To remove the git proxy globally, run the following commands in your terminal.
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy
If you want to remove the git proxy in a local config, then you use the following commands:
git config --unset http.proxy
git config --unset https.proxy
git config --unset core.gitproxy
You can verify, if the proxy config is successfully removed from your system or not by running the below command:
git config --global --list