I am new to heroku and express.js. I try to go through the tutorial, but I cannot make it with the step \'git push heroku master\'. I followed the tutorial exactly. Below is the
I have encountered this issue a few time before and it was because I was trying to push a remote branch to heroku.
To solve the problem, instead of using:
git push heroku master
I used:
git push heroku my-branch:master
This pushes the remote branch my-branch
in the git repository to the master
branch of heroku.