Mahir Islam
Mahir Islam

Reputation: 1972

Git doesn't push my project to my remote git repo

I never had this problem before. I have tried several solutions online but none seems to work. I understood from my googling that it seems I am uploading too many files but I also tried some solutions(that worked for others) such as: git config http.postBuffer 524288000. However, I keep ending up with the same error and my project doesn't upload to the remote git repository. This is the error:

error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly

Upvotes: 0

Views: 168

Answers (1)

Mahir Islam
Mahir Islam

Reputation: 1972

UPDATE

I managed to find a solution. This is what I did:

git config http.sslVersion tlsv1.2

and then: git push. It successfully pushed it. Hope it helps anybody who might get stuck on this :)

Upvotes: 1

Related Questions