how to take make branch of branch in git code example
Example 1: how to branch from a branch in git
$ git checkout -b myFeature dev
Example 2: how to create a branch in git
$ git branch [name of branch]
$ git checkout -b myFeature dev
$ git branch [name of branch]