Home > Software design >  How to fix git fatal error with strange characters when pushing?
How to fix git fatal error with strange characters when pushing?

Time:08-01

I installed git and created new repository on github. then I opened my project and started copy and paste commands from github. befere that I had added github username and email globally. when I paste the last command(git push) I had to authorize my account. I did it and than vscode asked me to authorize one more time. I did it. And than I got this error in console:

fatal: ╨Ч╨░╨┐╤А╨╛╤Б ╨▒╤Л╨╗ ╨┐╤А╨╡╤А╨▓╨░╨╜: ╨Э╨╡ ╤Г╨┤╨░╨╗╨╛╤Б╤М ╤Б╨╛╨╖╨┤╨░╤В╤М ╨╖╨░╤Й╨╕╤Й╨╡╨╜╨╜╤Л╨╣ ╨║╨░╨╜╨░╨╗ SSL/TLS.
fatal: ╨Я╤А╨╛╨╕╨╖╨╛╤И╨╗╨░ ╨╛╤И╨╕╨▒╨║╨░ ╨┐╤А╨╕ ╨╛╤В╨┐╤А╨░╨▓╨║╨╡ ╨╖╨░╨┐╤А╨╛╤Б╨░. 

if I try to repeat this then the authorization window does not open in my browser(just empty page) and I get the same error

CodePudding user response:

Based on wjandrea's comment, the error messages are the Russian translation of:

The request was aborted: Failed to create secure channel SSL/TLS

and:

An error occurred while sending the request

which are actually libcurl errors, rather than Git errors (see, e.g., Microsoft documentation).

Your options are therefore to fix whatever is causing libcurl to be unable to set up SSL/TLS, or to use an ssh URL instead of an https://-based URL.

  •  Tags:  
  • git
  • Related