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