what des git flow release start do code example
Example 1: git flow init
#basic
git flow init
#with default to not be promted
git flow init -d
#with force to re-run init and edit data
git flow init -f
Example 2: gitflow workflow diagram
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"