Unable to pull/push in git repository

前端 未结 23 2406
执笔经年
执笔经年 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条回答
  •  我在风中等你
    2020-12-08 07:15

    In version 2.x of git-bash The path to the .crt has changed to ../Git/mingw64/ssl/certs/ca-bundle.crt. I had to update this manually in git-bash with

     git config --global http.sslcainfo "/path/to/Git/mingw64/ssl/certs/ca-bundle.crt"
    

提交回复
热议问题