create new git branch command code example
Example 1: create new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: git create new branch from current
git checkout -b topic/newbranch
Example 3: create branch from another branch
$ git checkout -b myFeature dev
Example 4: create a branch command
$ git branch -a
Example 5: create a branch command
$ git push origin :[name_of_your_new_branch]