changing git ssl to git https

git config –global –unset http.proxy

git config –global credential.helper “cache –timeout=36000”

git config –global credential.helper wincred

git remote -v

git remote set-url origin https://gitlab.server.com/prj/module.git

git pull

fatal: unable to access ‘https://gitlab.server.com/prj/module.git/’: SSL certificate problem: unable to get local issuer certificate

git config –global http.sslVerify false

Username for ‘https://gitlab.server.com’: username
Password for ‘https://username@gitlab.server.com’:
Already up-to-date.