I have a few apps on Heroku, nothing has had this problem but I suddenly have had issues running git. Now I can't deploy my app to Heroku. When I run
git push heroku master
I get the following:
fatal: unable to access 'https://git.heroku.com/<herokuappname>.git/': Could not resolve host: (nil); nodename nor servname provided, or not known
When I run
git remote -v
I get the following:
heroku https://git.heroku.com/<herokuappname>.git (fetch)
heroku https://git.heroku.com/<herokuappname>.git (push)
I've looked up everything. Please help, thank you.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With