#To disable TLS/SSL verification for a single git command git -c http.sslVerify=false clone https://example.com/path/to/git git config http.sslVerify false #To disable SSL verification git config --global http.sslVerify false or before clone: export GIT_SSL_NO_VERIFY=1