How to resolve "Recv failure: Connection was reset" #49456
Replies: 10 comments 33 replies
-
|
i am new to pycharm,but i learn from others:"https://blog.csdn.net/qq_38415505/article/details/83687207" |
Beta Was this translation helpful? Give feedback.
-
|
it doesnt resolve my issue I still receive same issue with any repository I try to clone or push/pull into my laptop; although it's working from GitHub desktop |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
git push --force solves it. |
Beta Was this translation helpful? Give feedback.
-
|
This was the only thing that worked for me: https://stackoverflow.com/questions/67230241/fatal-unable-to-access-https-dev-azure-com-xxx-openssl-ssl-connect-connec/69712045#69712045 |
Beta Was this translation helpful? Give feedback.
-
|
If you use VPN to have access to GitHub and you're windows users, then you need to set you git proxy config same as your VPN ip and VPN port, you can refer to https://blog.csdn.net/weixin_44223180/article/details/133059575 |
Beta Was this translation helpful? Give feedback.
-
|
try git config --global http.proxy http://127.0.0.1:7890 |
Beta Was this translation helpful? Give feedback.
-
|
Here’s what’s happening and how to fix it: Email privacy restriction: GitHub rejects commits if your user.email is private and the commit was made with a different email. To fix this, update the commits with the correct email using Connection reset after changing email: This is usually network-related, not GitHub. Check your internet connection, VPN, or firewall. Alternatively, try pushing over SSH instead of HTTPS: |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
I started a new project, where I am following a tutorial. I created a repo in GitHub, then cloned it to my local machine. I started working on it, making commits locally. Now I'm ready to push to remote. However, I forgot to set my "user.email" property in the local repo. The repo in GitHub is public, so when I tried to push to remote it gave me an error of
So, I changed the "user.email" in my local repository. Then I tried pushing to the remote again. Now I'm getting a different error:
Now, I'm stumped. I don't know what to do to resolve this.
Beta Was this translation helpful? Give feedback.
All reactions