Franck Dernoncourt
Franck Dernoncourt

Reputation: 83167

GitHub Desktop / Git Shell: SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054

Since this morning, when I try to sync from GitHub Desktop after creating a commit, I sometimes get the message:

enter image description here

When I try to push the commit in Git Shell, I get:

SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054

enter image description here

What could be the issue?

It takes around one or two minute between the time I try to push and the time I get the error message (in GitHub Desktop or Git Shell), so I suspect some connection issues on GitHub side (I have checked the robustness of the connection on my side), but I find the message sibylline.

I use GitHub Desktop with Windows 7 SP1 x64 Ultimate.

Upvotes: 1

Views: 11177

Answers (2)

Neil Chen
Neil Chen

Reputation: 1

I got here because I was looking for a solution, too. I have got an SSL read: error.... (identical to yours) returned as well when I was trying to push a commit. The reason might have been some big files in the commit that you were trying to push to github.

For me, I followed steps https://git-lfs.github.com provides and it seems to solve my problem.

Upvotes: 0

Prashant
Prashant

Reputation: 118

Change URL from https to http, for me it worked. There must be problem with ssl tunnel. But currently you can start it by switching to http.

Upvotes: 2

Related Questions