how to push a branch to git code example
Example 1: git push to branch
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH
Example 2: Push your branch up to the remote.
$ git push <remote> <branch>
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH
$ git push <remote> <branch>