user2488234
user2488234

Reputation: 382

git push error: Server aborted the SSL handshake

I've been able to push-to-deploy with my appengine project for a while now. Latest push was 3 days ago. No issues.

Today, I'm receiving the error:

fatal: unable to access '[repo_url]': Server aborted the SSL handshake

Any ideas?

Upvotes: 4

Views: 5232

Answers (3)

Eric Yang
Eric Yang

Reputation: 1022

try this git push --set-upstream origin your_branch

Upvotes: 1

Reggie Pinkham
Reggie Pinkham

Reputation: 12748

I was just getting the exact same error. Tried pushing half a dozen times over a five minute period and the last time it just magically worked. I hadn't changed a thing. Perhaps it's an issue on the github servers..?

Upvotes: 1

Anil Kumar
Anil Kumar

Reputation: 546

Try to use with http.sslVerify=false in the User Settings.

If you are using eclipse Find

Window-->Preferences-->Git-->Configuration-->User Settings
-->http.sslVerify(Key)=false(value).

If it is worked i.e. your Ssl Certificate is Expired.

Upvotes: 1

Related Questions