We are setting up Git repositories for students to use as part of a class at our institution. We need to bypass the SSL verification step in order for the repositories to be cloned. For example, cloning a repository works on the command line like this:
$ env GIT_SSL_NO_VERIFY=true git clone https://domain.edu/path/to/git
Cloning into 'git'...
Username for 'https://domain.edu': xxx
Password for 'https://xxx@domain.edu':
Alternatively, this also works:
$ git config --global http.sslVerify false
$ git clone https://domain.edu/path/to/git
Cloning into 'git'...
Username for 'https://domain.edu': xxx
Password for 'https://xxx@domain.edu':
However, when I use SourceTree to attempt to clone the repo, it gets stuck on the authentication part, even with the http.sslVerify in my .gitconfig and the "Disable SSL certificate verification" box checked in the preferences.
Any ideas?