create branch of another branch git code example
Example 1: git command to create a branch from another branch
$ git checkout -b myfeature dev
Example 2: git new branch create
git checkout -b <new-branch>
$ git checkout -b myfeature dev
git checkout -b <new-branch>