How to create a git branch on remote git server
Posted on In QAWe 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