git flow start feature from another feature code example
Example 1: git flow finish feature
git flow feature finish MYFEATURE
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