如何克隆一个指定的分支
方案一
git clone --branch <branchname> <remote-repo-url>
或
git clone -b <branchname> <remote-repo-url>
方案二
git clone --branch <branchname> --single-branch <remote-repo-url>
或
git clone -b <branchname> --single-branch <remote-repo-url>
这里 -b 只是 --branch 的别名。
这与方案一的操作相同,除了 --single-branch 选项,它是在 Git 版本 1.7.10 及更高版本中引入的。这个选项允许你仅从指定的分支中获取文件而不获取其他分支。