Open a Windows command prompt
Type
heroku login
Enter username and password
Type
heroku auth:token
Copy the auth token printed
Open git bash shell
Navigate to project directory e.g.
cd /c/users/STARID/yourprojectdirectory
Make sure project is a git repository, you have Procfile, have .gitignore set up...
Create heroku app
heroku apps:create
Push code to Heroku
git push heroku master
You'll get a pop up asking you to log in
- Leave username blank
- Paste in the heroku auth token copied earlier for the password
Click ok
Code should be pushed to Heroku