how to add heroku remote code example
Example 1: how to add existing heroku remote
git remote add heroku git@heroku.com:project.git
Example 2: git remote add heroku
heroku git:remote -a project
Example 3: heroku git remote
heroku git:remote -a name-of-app
Example 4: push heroku
$ git push heroku master
Example 5: heroku create app
heroku create <app_name_you_want_it_to_be>
# Make sure you have heroku CLI installed and have added it to PATH.