The bad and insecure method » History » Revision 5
Revision 4 (Redmine Admin, 09/15/2014 12:04 PM) → Revision 5/6 (Redmine Admin, 09/15/2014 12:05 PM)
h1. The bad and insecure method h3. 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. 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> h2. .h2 *Warning: These methods This method allows a man-in-the-middle attack and should not be used at all!*