Recipe 2.1 Creating a feature branch
Problem
You are starting work on a new feature and need to create a new feature branch.
Solution
When starting work on a new feature, branch off from the develop branch. execute the below git commands to create your feature branch.
$ git checkout -b myfeature develop
$ git push origin myfeature
Discussion