how to make new branch terminal code example
Example 1: git new branch create
git checkout -b <new-branch>
Example 2: create a branch command
$ git fetch [name_of_your_remote]
git checkout -b <new-branch>
$ git fetch [name_of_your_remote]