There was a guy who had the same problem and then managed to solve it. He reported on ONLY version in English. I will post the answer here in a free translation:
Well, we’ve done the following steps:
We Google the error
We come to the Links of ONLY(this and this) who suggested the same thing, that I have update the settings of proxy
of Git
.
Damn, I can’t see the information from proxy
control panel. IT "faces" must have hidden. I can’t even change the settings not to use proxy
.
I found it magnificent tutorial which shows in which proxy
you are connected.
I updated the key http.proxy
in the settings of Git
with the following command:
git config --global http.proxy
http[s]://username:password@proxyaddress:port
Error - could not resolve proxy some@proxyaddress:port
. I realized my password had the symbol @.
Code @
in your password (if any) to %40
, because the Git
separates the configuration from the proxy
for @.
git config --global http.proxy
http[s]://username:password(encoded)@proxyaddress:port
Worked!
Note - I just wanted to answer this question by "souls" with me, who were looking for answers here on ONLY:D
I hope I helped the/
P.S.: This is the link to the original question/answer
How are you trying to connect? Via shell? which command are you typing to return this error?
– Uilque Messias
Via Linux Terminal, with both commands returns this error, I give the command
git pull
it returns this error and when I givegit push
tb returns @Uilquemessias– Tiago Ferezin
have you tested your internet connection? https://stackoverflow.com/questions/18356502/github-failed-to-connect-to-github-443-windows-failed-to-connect-to-github
– user45474
@Nikobellic already tested my connection, this normal, other pc from here from normal company wheel, until before yesterday was normal that tb, but from yesterday started that problem
– Tiago Ferezin
see if there is any proxy set in your env
– user45474
if you have and only give unset in the proxy variable
– user45474
@Nikobellic doesn’t have any
– Tiago Ferezin
so the sysadmin in the cause sends a print of the error so I’m the kind that I only believe seeing I got fucked now
– user45474
@Nikobellic, the worst Windows won’t believe, when I pull and push by the eclipse git plugin makes normal
– Tiago Ferezin
@Nikobellic fixed, eh that in my git config had duplicate settings, two user.name and two user.email
– Tiago Ferezin