I create a new branch in Git:
git branch my_branch
Push it:
git push origin my_branch
Now say someone mad
By the way, the shortcut to pushing the current branch to a remote with the same name:
$ git push -u origin HEAD