master and develop new names code example
Example 1: how to initialised my repository with git flow
how to initialised my repository with git flow
Example 2: 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