xxxxxxxxxx
$ git push <remote> <local_branch>:<remote_name>
xxxxxxxxxx
# When pushing to a non-default branch,
# you need to specify the source ref and the target ref:
git push origin branch1:branch2
#Or
git push <remote> <branch with new changes>:<branch you are pushing to>
xxxxxxxxxx
git push <remote-name> <local-branch-name>:<remote-branch-name>