Actions
The bad and insecure method¶
Temporary ignore ssl certificate verification for one operation¶
env GIT_SSL_NO_VERIFY=true git clone https://scm.in.tu-clausthal.de/git/PROJECTNAME
Disable ssl verfication for user Account¶
git config http.sslVerify false
Globally disable ssl verification¶
git config --global http.sslVerify false
Warning: These methods allows a man-in-the-middle attack and should not be used at all!
Updated by Redmine Admin over 10 years ago · 6 revisions