Failed to push - Android Studio 3.0

1

I upgraded my Android Studio to version 3.0, but now that I've push in my app , he introduced the following error, tried every way and I can not do this:

  

Unable to access ' link ': could not resolve host: github.com

    
asked by anonymous 27.10.2017 / 14:48

1 answer

0

It is possible that you have mistakenly configured git's proxy usage and it can not resolve github.com.

Try disabling git proxy settings by running from the command line:

git config --global --unset http.proxy
git config --global --unset https.proxy
    
28.10.2017 / 15:31