how to push a branch i created code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: Push your branch up to the remote.
$ git push <remote> <branch>
git push -u origin branchName
$ git push <remote> <branch>