Version Control with Git Flow

Episode #48 by Teacher's Avatar David Kimura

Summary

Using Git Flow, learn how to work with branches and organize your changes. Once you have completed features, learn how to merge them back into a develop branch and prepare for a release to your master branch.
version control git 6:33

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