Skip to content

Instantly share code, notes, and snippets.

@Neo42
Created February 16, 2022 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Neo42/11aec1a8cc580a8f009e87849a7db76c to your computer and use it in GitHub Desktop.
Save Neo42/11aec1a8cc580a8f009e87849a7db76c to your computer and use it in GitHub Desktop.
how to fix git connection issue
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --local --unset http.proxy
git config --local --unset https.proxy
git config --global http.proxy http://127.0.0.1:8001
git config --global https.proxy https://127.0.0.1:8001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment