Git Flow Commands
  • Install Git flow, instructions for mac user
brew install git-flow
  • Init Git flow
git flow init
  • Create feature
 git flow feature start <branch>
  • Finish feature
git flow feature finish <feature>