git 报错fatal: unable to access ‘https://gitee.com/xxx‘ getaddrinfo() thread failed to start解决。

      一 问题:     

 在git clone https://gitee.com/xxx/xxx.git  报错:
Cloning into 'xxx'...
fatal: unable to access 'https://gitee.com/xxx/xxx.git/': getaddrinfo() thread failed to start

如图:

git 报错fatal: unable to access ‘https://gitee.com/xxx‘ getaddrinfo() thread failed to start解决。_第1张图片

 在上图git bash ping 不通,而cmd是正常的,说明是环境。

二 解决

  解决方式一:直接更换环境,git bash直接更换回cmd 解决。如图:

git 报错fatal: unable to access ‘https://gitee.com/xxx‘ getaddrinfo() thread failed to start解决。_第2张图片

 解决方式二:修正问题环境,为git bash重新配置正确的域名

git config --global dns.servers 8.8.8.8 8.8.4.4

你可能感兴趣的:(git)