You can create a new branch using git branch
:
$ git branch <new-branch>
You can switch to the new branch using git switch
or git checkout
:
$ git switch <new-branch>
$ git checkout <new-branch>
Now you can push the new branch to a remote:
$ git push -u origin <new-branch>