[Git] 解決 Remote 遇到自我憑證 SSL certification problem

在remote GIT操作時, 遇到 src\Silkrode.Authorization.OAuth: unable to access 'https://gitlab.silkrode.com.tw/team_dotnet/microservices/authorization/oauth2/silkrode.authorization.oauth.git/': SSL certificate problem: certificate has expired

 

SSL certificate problem: certificate has expired

解決的方式 (設定為全域)

git config --global http.sslVerify false

若只想針對某個Repository設定, 要切到該Repository下

git config http.sslVerify false