Commands
git flow init
git branch # View Branches
git push origin develop
# Feature Branch
git flow feature start authentication
git flow feature finish authentication
# Release
git flow start finish 0.1.0
git flow release finish 0.1.0
# Hot Fix
git flow hotfix start assets
git flow hotfix finish assets
Reference: