Unable to pull/push in git repository

前端 未结 23 2340
执笔经年
执笔经年 2020-12-08 06:15
$ git pull origin master
fatal: unable to access \'https://xxxxxxxxxxxxxxx\': 
      error setting certificate verify locations:
CAfile: C:/Users/abc/AppData/Local/P         


        
23条回答
  •  -上瘾入骨i
    2020-12-08 07:03

    Try this

    git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt"
    

    or

    Switch off your SSL by running this command

    git config --system http.sslverify false
    

提交回复
热议问题