git push to own branch code example
Example 1: github Push local branch to Remote
git push origin <Branch_Name>
Example 2: push local branch changes to remote branch
git push -u origin localBranch:remoteBranchToBeCreated
Example 3: Push your branch up to the remote.
$ git push <remote> <branch>