Skip to content

Instantly share code, notes, and snippets.

@guilhermelinhares
Last active November 17, 2022 14:42
Show Gist options
  • Save guilhermelinhares/dbba4ac7c46c2bb1bbeb5382d6a04c9a to your computer and use it in GitHub Desktop.
Save guilhermelinhares/dbba4ac7c46c2bb1bbeb5382d6a04c9a to your computer and use it in GitHub Desktop.
GIT_NO_SSL_VERIFY
#Fail Fix -> server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
#Method 1 -> Specific Repo
git -c http.sslVerify=false <command> <repo>.git
#Method 2 -> Global Config
git config --global http.sslVerify false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment