push changes to remote branch code example
Example 1: push all branches to remote
git push REMOTE '*:*'
git push REMOTE --all
Example 2: how to push changes to branch in git
# push any desired branch to remote
git push -u origin local_branch_name:remote_branch_name
Example 3: push local branch changes to remote branch
git push -u origin localBranch:remoteBranchToBeCreated
Example 4: Push your branch up to the remote.
$ git push <remote> <branch>