SSL certificate error when clicking on Heroku

Today I get this error after the git push heroku master command:

fatal: unable to access 'https://git.heroku.com/myserver.git/': SSL certificate problem: Invalid certificate chain

What should I do?

+4
source share
3 answers

As @bcmcfc says above. They have a problem with SSL certificates that affect http://status.heroku.com and other services. Affected services are http://status.heroku.com and are deployed through git, Dropbox and Github sync. Applications are not affected and are working fine. "

+3
source
0

, ssh, : https://devcenter.heroku.com/articles/git#ssh-git-transport.

, , , --ssh-git. , my-app: heroku git:remote -a my-app -r my-app-ssh --ssh-git

, . : heroku keys:add

, , : git push my-app-ssh master

! : -r git-remote-name .

0
source

Source: https://habr.com/ru/post/1655621/


All Articles