create new branch from existing branch on github code example
Example 1: create branch from existing branch
$ git checkout -b myFeature dev
Example 2: new branch from existing branch
git checkout -b
$ git checkout -b myFeature dev
git checkout -b