1
$ git config --global core.autocrlf true

$ git push -u origin main
fatal: unable to access 'https://github.com/Habeeb690/usd.git/': Could not resolve host: github.com
Gaël J
  • 11,274
  • 4
  • 17
  • 32
Aliu Aremu
  • 19
  • 1

1 Answers1

1

It is possible that you are using proxy and that messes it up. It may help:

git config --global --unset http.proxy 
git config --global --unset https.proxy
Dj_Bear
  • 29
  • 5