【Git】git操作常用场景(一)——本地切换远程分支(本地不存在)
git操作常用场景描述:Git clone只会在本地默认创建一个master(或者叫main,黑命贵运动)分支。但是某些时候我们并不会直接使用master,或者说master是被保护的分支,我们需要其他分支。
1. 查看所有分支
git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/feature/arm
remotes/origin/feature/dev
remotes/origin/master
远程分支一般会用红色字体标记出来.
2. 新建分支并切换指定分支
# git checkout -b 本地分支名 origin/远程分支名
git checkout -b dev origin/feature/dev
创建本地分支,并关联远程分支。
3. 查看本地分支详细信息
git branch -vv
- 原文作者:Garfield
- 原文链接:http://www.randyfield.cn/post/2021-10-18-git-remote-branch/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。