Table of Contents
Git Tools
SSL Insecure add to project
Connect through SOCKS proxy
Git Tools
SSL Insecure add to project
git config http.sslVerify false
or inline:
GIT_SSL_NO_VERIFY=true
git clone
https://oauth2:token@gitlab.example.com/repo.git
Connect through SOCKS proxy
git config http.proxy 'socks5:\/\/127.0.0.1:7777'
or inline:
ALL_PROXY=socks5:\/\/127.0.0.1:7777
git clone
https://oauth2:token@gitlab.example.com/repo.git