git push -u origin <name_of_branch>
Git will by default push all branches that have the same name on the remote. To limit this behavior to just the current branch, set this configuration option:
git config --global push.default tracking
References