bitbucket gitflow code example
Example 1: gitflow workflow diagram
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"
Example 2: gitflow atlassian
$ git flow hotfix start hotfix_branch
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"
$ git flow hotfix start hotfix_branch