1

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.

vvahans
  • 1,849
  • 21
  • 29

2 Answers2

0

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:

  1. Go to my repo an copy the HTTPS URL on the clone option
  2. 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

Mauricio Sartori
  • 2,533
  • 6
  • 26
  • 28
0

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

vikvincer
  • 639
  • 6
  • 10