Cannot push to Heroku 'fatal: unable to access..Could not resolve host: (nil); nodename nor servname provided, or not known'
Whenever this randomly happens to me, removing and adding heroku again as a remote reference always works.
First check if you do have heroku as a remote.
git remote -v
If heroku is present, remove it.
git remote rm heroku
Then add it back.
git remote add heroku [email protected]:project.git
Usually this works with me, try it and let me know what happens.
Try this:
heroku keys:add
Worked for me
git remote -v
git remote rm heroku
git remote add heroku [email protected]:project(full url).git
heroku keys:add
These steps worked