github new brach create code example
Example 1: git create new branch from current
git checkout -b topic/newbranch
Example 2: create a new branch and publish gitub
git checkout -b <branch>
git push -u origin <branch>
git checkout -b topic/newbranch
git checkout -b <branch>
git push -u origin <branch>