fatal: unable to access, schannel: failed to open CA file, No such process, GitHub Desktop
fatal: unable to access, schannel: failed to open CA file, No such process, GitHub Desktop
Full error text:
fatal: unable to access 'https://github.com/Repository_name': schannel: failed to open CA file 'C:/Users/Username/AppData/Local/GitHubDesktop/app-1.2.1/resources/app/git/mingw64/ssl/certs/ca-bundle.crt': No such process
Application just stopped to work and throwing this error every time when I try to fetch, pull, push or clone any repository. The same commands in bash work correctly
Hey Andy, how did you downgrade?
– Handleman
May 31 at 2:06
I just reran the installer, but I only had the installer left in my downloads folder by chance.
– Andy Rich
May 31 at 4:39
Same error here with me, i just applied the new updates in my gitDesktop and now i m unable to fetch any repo and this same error appearing here.
– Tahir Afridi
May 31 at 7:59
5 Answers
5
Go to %ProgramData%/Git
open config file with a text editor and substitute
%ProgramData%/Git
sslCAInfo = ... some stuff
with
sslCAInfo = ... some stuff
sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
This has been already discussed in this issue on Github https://github.com/desktop/desktop/issues/4817 and it will be fixed asap.
This helped me. Thanks @simoconfa
– Arup Bhattacharya
Jun 13 at 13:31
The error I got was:fatal: unable to access 'https://github.com/{reponame}.git/': schannel: failed to open CA file 'C:/Program Files (x86)/Git/mingw64/ssl/certs/ca-bundle.crt': No such process
fatal: unable to access 'https://github.com/{reponame}.git/': schannel: failed to open CA file 'C:/Program Files (x86)/Git/mingw64/ssl/certs/ca-bundle.crt': No such process
I fixed it by opening my config file located in "C:ProgramDataGitconfig" and updating the setting as follows sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
I hope this helps someone
CF How do I set GIT_SSL_NO_VERIFY for specific repos only?
I fixed this by running
git config http.sslVerify false
but not sure how secure my GIT comms is now :(
This is a bad suggestion; see editing the system git config file answers here.
– Micha
Jun 10 at 13:18
you can use it
git config http.sslVerify false
use it in your repository
or use this command if you dont have a git repo
git config --global http.sslVerify false
fatal: unable to access 'https://github.com/izaap-tech/HMGPS-APP.git/': schannel: failed to open CA file 'C:/Users/Userx/AppData/Local/GitHubDesktop/app-1.2.2/resources/app/git/mingw64/bin/curl-ca-bundle.crt': No such file or directory
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
I hit this error today when I downloaded the new version (2.17.1) that was released on 5-29. I had to downgrade to an older version I had cached in my downloads folder to resolve the issue.
– Andy Rich
May 30 at 21:57