git多分支并行开发 - qwenyang/docs GitHub Wiki

(1)先将远程分支独立创建到本地分支(新建)

git checkout -b 本地分支名 origin/远程分支名

不带-b,表示将远程分支checkout到本地,不会新建

https://blog.csdn.net/csflvcxx/article/details/81612336