heroku remote add 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: git push to heroku

$ git push heroku master

Example 4: how to force push to heroku

git push --force heroku master

Example 5: heroku git remote

heroku git:remote -a name-of-app

Example 6: deploy to heroku

$ git add .
$ git commit -m "Added a Procfile."
$ heroku login
Enter your Heroku credentials.
...
$ heroku create <app-name>
Creating arcane-lowlands-8408... done, stack is cedar
// now create procfile
//
//node app.js
// 
$ git push heroku master
-----> Node.js app detected
...
-----> Launching... done
       http://arcane-lowlands-8408.herokuapp.com deployed to Heroku