Fatal unable to access could not resolve host GitHub
I am using the clone command in Git Bash, but it shows me the below error.
fatal: unable to access could not resolve host: GitHub
Why do I keep getting the error "fatal: unable to access could not resolve host: GitHub" whenever I am using the clone command in Git Bash?
This can be caused by incorrect proxy settings, or error typing names, make sure you're using the exact URL of whatever you're trying to do.
Try these commands.
git config --global --unset http.proxy
Also set user- name and user-email.
git config --global user.name "user name"
git config --global user.email "user email"
Hope this will solve your error.