我通常用它在colab中克隆一个github repo
!git 克隆 https://github.com/user/repo.git
但是说我想克隆 repo 的特定分支。我试过了
!git 克隆 https://github.com/user/repo/tree/branch.git
但我收到一个错误
致命:未找到存储库“https://github.com/user/repo/tree/branch.git/”
最佳答案
试试这个:
!git clone -b branch_name https://github.com/user/repo.git
将 branch_name 替换为要克隆的分支名称
关于python - 如何在 Python、Colab 中克隆特定分支?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57130210/