Heroku Cheatsheet
Heroku is super simple and easy to get hosting sorted. Here are some common and/or useful commands.
- Pull
git pull heroku master
- Clone
heroku git:clone -a project-name
- Open Project/URL
heroku open
Process
git pull heroku master
git add .
git commit -m "commit message"
git push heroku master