Description: Discover how to skip SSL verification in Git commands when accessing a server with a self-signed certificate. Our guide provides easy-to-follow instructions and valuable tips to help streamline your Git workflow and avoid potential errors.
If the skip is one time only, use -c http.sslVerify=false
git -c http.sslVerify=false clone https://example.com/path/to/git
If skip permanently, use git config
git config http.sslVerify false
``
[[Legacy Link]](https://xeth0102.atlassian.net/wiki/spaces/DW/blog/2023/03/17/256868353/Disable+git+ssl+cert+verification)