git clone 只下载某一个分之和多少深度
时间: 2023-05-17 11:05:03 浏览: 130
Git clone
您可以使用以下命令来只下载某一个分支和指定深度的历史记录:
git clone --branch <branch_name> --depth <depth> <repository_url>
其中,<branch_name> 是您想要下载的分支名称,<depth> 是您想要下载的历史记录深度,<repository_url> 是您想要克隆的仓库的 URL。
阅读全文