Heroku Create Command Yielding "ENOENT" Error

Turns out the application was being created fine, but when I attempted to push my local repository using the command "git push heroku master" I didn't have a git remote setup.

Solved by running: git remote add heroku [email protected]:your-app-name-here.git


I was also facing same problem while deploying sample node js application on heroku cloud by following the heroku tutorial. I was trying to run the "heroku create" and "git push heroku master" from Window's command prompt and it was not working due to above and other reasons.

Things started working for me when I did the same things from Gits bash session. I started git bash and ran the above commands from git bash command line.