github 新建分支的作用,当你在一个分支做请求时,你也能继续在其他分支上工作。
查看分支:git branch创建分支:git branch <name>切换分支:git checkout <name>创建+切换分支:git checkout -b <name>合并某分支到当前分支:git merge <name>删除分支:git branch -d <name>
远程仓库
原文:http://www.cnblogs.com/shirly77/p/6457908.html