how to make a branch from a branch code example
Example 1: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: make a new branch git
git checkout -b branch-name
Example 3: create a new branch based on another branch
git checkout -b myfeature dev
Example 4: createa. branch off of development git
git checkout -b myFeature dev
Example 5: git command to create a branch from another branch
$ git checkout -b myfeature dev
Example 6: how to create a branch in git
$ git branch [name of branch]