zoukankan      html  css  js  c++  java
  • GitHub Desktop报错fatal: unable to access 'https://github.com……: schannel: failed to open CA file 'C:/Users……bundle.crt': No such file or directory的解决办法

    昨天github桌面版push的时候开始报错,提示某个crt文件找不到,大概就是下面这样

    fatal: unable to access 'https://github.com/XXX/': schannel: failed to open CA file 'C:/Users/Andrew/AppData/Local/GitHubDesktop/app-1.2.2/resources/app/git/mingw64/bin/curl-ca-bundle.crt': No such file or directory

    顺着提示的文件夹一路点击进去,确实没有那个crt文件。

    然后搜索了半天,终于在stackoverflow上找到了相关的答案。

    stackoverflow上的答案是用记事本打开"C:ProgramDataGitconfig",

    然后将其中的“”sslCAInfo=……”改为 sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt,保存然后重新提交。

    试了一下,我的并没有用,因为我的c盘并没有这个文件,不过启发了我,因为我以前报错的文件夹好像也包含了mingw64这个文件夹。

    所以把sslCAInfo的地址改为原来报错文件夹下面的mingw64中相应的文件的地址就好了。

    比如我的就是:

    C:/Users/Administrator/AppData/Local/GitHubDesktop/app-1.2.3/resources/app/git/mingw64/ssl/certs/ca-bundle.crt

    附一张修改后可以成功上传的config文件图片

    stackoverflow相关地址:https://stackoverflow.com/questions/50612862/fatal-unable-to-access-schannel-failed-to-open-ca-file-no-such-process-gith

    github关于此问题的issue:https://github.com/desktop/desktop/issues/4817

     

  • 相关阅读:
    LeetCode-494. Target Sum(DFS&DP)
    页面过渡 页面切换
    推荐几款制作网页滚动动画的 JavaScript 库
    Loda Button
    在百度地图或谷歌地图给中国各省着色并高亮显示
    TweenMax.js
    anime.js 简单入门教程
    用nrm一键切换npm源
    阿里巴巴26个前端开源项目
    Git使用教程,最详细,最傻瓜,最浅显,真正手把手教
  • 原文地址:https://www.cnblogs.com/xianxiaobo/p/9288558.html
Copyright © 2011-2022 走看看