How to create a git branch on remote git server

We may need to maintain a dev-name branch on git remote server to share your codes. How to create the branch?

1, git checkout -b your_branch_name
2, Do your changes, add commit
3, git push origin your_branch_name

References:
http://stackoverflow.com/questions/1519006/how-do-you-create-a-remote-git-branch

Leave a Reply

Your email address will not be published. Required fields are marked *