Reputation: 25
I'm in an online course, and I am currently learning to host a web app on Heroku. I haven't really learned Git yet (it's in the next module), but I'm following everything the instructor is doing, but I've encountered an issue. I did git push heroku master
, but I'm now getting an error.
I also did git remote -v
and got this:
I've searched this up on Google and tried to find a solution for the past 2 hours, but I can't find anything. If there's anything (screenshot, etc.) that's needed I'll be happy to add that information.
Upvotes: 0
Views: 249
Reputation: 1325037
Check what git config --show-scope --show-origin http.sslcainfo
returns (using Git for Windows 2.27 or 2.28)
Make sure the path C:\xxx\Git\mingw64\ssl\certs\ca-bundle.crt
does exist, or adjust your Git installation path.
Upvotes: 1