how to create a new branch in git 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: createa. branch off of development git
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
Example 4: how to create a branch in git
$ git branch [name of branch]
Example 5: create a branch command
$ git fetch [name_of_your_remote]