# First time setup
$ cd hello_app
$ git init
$ git add -A
$ git commit -m "Initial commit"
$ git remote add origin https://github.com/overdrivemachines/hello_app.git
$ git branch -M main
$ git push -u origin main
# List of Commit Messages
$ git log
# Create and Switch to New Branch
$ git checkout -b modify-Alpha
# List all Branches
$ git branch
# Switch to Main Branch
$ git checkout main
# Merge Branch to Main Branch
$ git merge modify-Alpha
# Delete Branch
$ git branch -d modify-Alpha
# Delete Branch that was not merged
$ git branch -D modify-Alpha
=================
After we are done with a branch
$ rails test
$ git add -A
$ git commit -m "Add user following"
$ git checkout main
$ git merge following-users
$ git push
$ git push heroku
$ heroku pg:reset DATABASE
$ heroku run rails db:migrate
$ heroku run rails db:seed