The bad and insecure method » History » Revision 2
Revision 1 (Redmine Admin, 08/06/2014 12:06 PM) → Revision 2/6 (Redmine Admin, 08/06/2014 12:07 PM)
h1. The bad and insecure method Please be aware that all of these methods allows an attacker h3. h2. Temporary ignore ssl certificate verification for one operation <pre>env GIT_SSL_NO_VERIFY=true git clone https://scm.in.tu-clausthal.de/git/PROJECTNAME</pre> h3. h2. Disable ssl verfication for user Account <pre>git config http.sslVerify false</pre> h3. Globally disable ssl verification <pre>git config --global http.sslVerify false</pre>