标签:
Push changes to remote. (If the remote doesn‘t have the branch, the branch will be created)
git push <remote name> <branch name>
Renaming a branch (a complete version of push command)
This can delete a remote branch by providing empty local branch name.
git push <remote name> <local branch name>:<remote branch name>
References:
https://help.github.com/articles/pushing-to-a-remote/
标签:
原文地址:http://www.cnblogs.com/quanben/p/5631972.html