git clone -b
时间: 2023-11-04 13:54:21 浏览: 88
Git clone
git clone -b 是 Git 命令用于克隆特定分支的仓库。在克隆仓库时,可以使用 -b 参数指定所需的分支名称。例如,使用以下命令克隆指定分支的仓库:
git clone -b branch_name repository_url
其中,branch_name 是要克隆的分支名称,repository_url 是仓库的 URL。通过这个命令,你可以将指定分支的仓库复制到本地。
阅读全文