可以使用以下命令来克隆指定分支的远程仓库:
git clone -b <branch_name> <remote_repository_url>
其中,<branch_name>
是要克隆的分支名称, <remote_repository_url>
是远程仓库的 URL。例如:
git clone -b dev https://github.com/username/repo.git
这将把远程仓库 repo
的 dev
分支克隆到当前目录下的一个名为 repo
的文件夹中。
如果要在本地创建一个新的分支并切换到该分支,可以使用以下命令:
git checkout -b <new_branch_name> origin/<branch_name>
其中, <new_branch_name>
是要创建的本地分支名称, <branch_name>
是要跟踪的远程分支名称。例如:
git checkout -b feature origin/dev
这将在本地创建一个名为 feature
的新分支,并将其设置为跟踪远程仓库 repo
的 dev
分支。