create branch from master branch code example
Example 1: git create new branch from current
git checkout -b topic/newbranch
Example 2: create development branch from master git
$ git checkout -b development
$ git push origin development
git checkout -b topic/newbranch
$ git checkout -b development
$ git push origin development