Resources

Summary

# Terminal
brew install git
brew install git-flow-avh

rails new testapp
cd testapp
git init
git flow init

git status
git branch
git add -A .
git commit -m 'first commit'

git flow feature start update-readme
nano README.md
git status
git add README.md
git commit -m 'Removed text'
git flow feature finish

Command Overview


Taken from linked Git Flow Cheatsheet