crete new branch from bash code example
Example 1: git create new branch from current
git checkout -b topic/newbranch
Example 2: how to create a branch in git
$ git branch [name of branch]
git checkout -b topic/newbranch
$ git branch [name of branch]