可以使用以下命令将远程分支拉到本地:
- 首先,使用
git remote
命令查看已经添加的远程仓库:
1 | git remote |
- 然后,使用
git fetch
命令将远程分支拉取到本地仓库(不会进行合并):
1 | git fetch origin remote_branch |
- 最后,使用
git checkout
命令将远程分支切换到本地分支:
1 | git checkout local_branch |
- 组合命令
1 | git fetch origin remote_branch:local_branch |
其中,remote_branch
为远程分支名称,origin
为远程仓库名称,local_branch
为本地分支名称,可以根据实际情况进行替换。