Git 直接pull远端指定分支

工具 · 2022-10-11

首先查看远端分支有哪些

git branch -a # 返回本地加远程的 远程别名默认为remote

返回如下,

[root@ecs-71300 shishai_admin_fe]# git branch -a
 * master
  remotes/origin/HEAD -> origin/master
  remotes/origin/demo
  remotes/origin/master
git checkout -b 本地分支名 origin/远程分支名
git fetch <远端仓库名>
git checkout -b <本地分支名> <远端仓库名>/<分支名>

参考文章 >>>

Git
Theme Jasmine by Kent Liao