git flow workflow cheatsheet code example
Example 1: git flow feature
#Open a feature branch named: feature/feature_name
git flow feature start feature_name
#Close a feature branch
git flow feature finish feature_name
#Remember to push all branches
git push --all
Example 2: git fklow init
git flow release finish '0.1.0'