Replies: 7 comments 8 replies
-
|
It seems like Git is trying to use a SOCKS proxy that is no longer active. You can try disabling the proxy settings in Git to see if that resolves the issue. Here are the steps to disable the proxy settings in Git:
git config --global --get http.proxy
git config --global --unset http.proxy
git config --global --get https.proxy
If this does not resolve the issue, you can also try reinstalling Git or GitHub Desktop to ensure that there are no lingering proxy settings. Hope this helps! 🙌🙌 |
Beta Was this translation helpful? Give feedback.
-
|
@utc425937 try Updating proxy settings for Git |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for posting in the GitHub Community, @utc425937 ! We're happy you're here. You are more likely to get a useful response if you are posting your question in the applicable category, the Issues category is solely related to conversations around the GitHub products Issues and Projects. I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
-
|
git config --global --unset-all remote.origin.proxy |
Beta Was this translation helpful? Give feedback.
-
|
The error message you're seeing usually pops up when there's a leftover proxy configuration that Git is trying to use. Even if you're not actively using Tor or a VPN now, sometimes these settings stick around. Here's a quick fix to try: Open Git Bash and type git config --global --unset http.proxy and git config --global --unset https.proxy. This should clear out any proxy settings that might be causing trouble. As for rotating proxies like those at Proxy Rotator, they can be handy for certain tasks that need frequent IP changes, like web scraping or testing. Just be sure to use them responsibly to avoid any unexpected hiccups like this one! |
Beta Was this translation helpful? Give feedback.
-
|
thanks, it works🤩 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
I am using github desktop and git for windows.
When cloning it shows :Cloning into 'C:\Users...
fatal: unable to access 'https://github.com/.......git/': Unsupported proxy syntax in 'socks:127.0.0.1:9150'
9150 is tor listening port but i am not using tor that time neither do i use vpn or proxy,I did download tor and used it a couple weeks ago.
How can i solve that?
Beta Was this translation helpful? Give feedback.
All reactions