标签:16px 远程分支 sof add check push 其他 class checkout
分支操作
(1) 删除远程分支
$git remote add origin ssh://git@xxx.git ##如果未连接远程分支要先连接 $git push origin :<remote branch name>
(2) 从远程仓库里拉取一条本地不存在的分支,将会自动创建一个新的本地分支,并与指定的远程分支关联起来,同时自动切换到这个分支
$git checkout -b <local branch name> origin/<remote branch name>
标签:16px 远程分支 sof add check push 其他 class checkout
原文地址:http://www.cnblogs.com/storml/p/7542617.html