I am getting
SSLRead() return error -9841
error whenever I try top perform any action like - fetch, checkout in source tree.
Any pointers would help. Thanks.
I am getting
SSLRead() return error -9841
error whenever I try top perform any action like - fetch, checkout in source tree.
Any pointers would help. Thanks.
I had the same issue, in my case was because my pal had changed the name of the project back in the repo. Then I was pointing to the old one. I solved it like this:
Update the new URL destination with this command:
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
And it worked just fine, you can find more info about changing remote URLs in here
I had the same issue -9841.
I fixed it using git config http.sslVerify true
.
You can check http.sslverify
using this git config --global --list