Git使用无法拉取

错误提示:

error setting certificate verify locations: CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none

问题原因:

这个问题是因为git配置里crt证书的路径不正确导致的

解决办法:

  • 这个路径配置是在C:\Program Files\Git\etc\gitconfig中,应该所有人的配置都在这里

    [diff "astextplain"]
    textconv = astextplain
    [http]
    sslBackend = openssl
    sslCAInfo = D:/Git/mingw64/ssl/certs/ca-bundle.crt # 原来默认写的就是 C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
    [core]
    autocrlf = true
    fscache = true
    symlinks = false
    [pull]
    rebase = false
    [credential]
    helper = manager-core
    [credential "https://dev.azure.com"]
    useHttpPath = true
    [init]
    defaultBranch = master

  • ca-bundle.crt 而该文件是在git的安装目录下的,比如我的git安装路径是在D:\Git\,所以我本机的crt文件就在D:/Git/mingw64/ssl/certs/ca-bundle.crt

相关推荐
Yeats_Liao12 小时前
Git 如何将旧仓库迁移新仓库中,但不显示旧的提交记录
git
五月仲夏15 小时前
git基础指令大全
大数据·git·elasticsearch
节省钱15 小时前
【Git】如何在 Git 提交后补充 Change-Id
服务器·git·gitee·gitlab·github·gitcode
想一个不重名的名字15 小时前
Git知识分享
git
dujunqiu1 天前
gitlab处理空文件夹的提交或空文件夹提交失败
git·gitlab·github
Hello Dam1 天前
Git 小白入门教程
git
Junmay661 天前
Git常用操作指令
git·github
这猪好帅2 天前
【Git版本控制器--3】Git的远程操作
git
smile_life_2 天前
git和idea重新安装后提交异常
java·git·intellij-idea