github clone有某个仓库下的指定目录

浏览:14日期:2023-10-04

问题描述

github 怎么clone仓库下的指定目录。我不想把整个目录都clone下来,只是需要修改某个目录,请问怎么做

问题解答

回答1:

一个仓库即唯一一个 git,git clone 是对 git 的操作,只能是整个 download 。git无法实现你的需求

回答2:

// mybranch 指定的仓库名称git clone -b mybranch --single-branch git://sub.domain.com/repo.git回答3:

可以实现:

mkdir myrepocd myrepogit initgit config core.sparseCheckout truegit remote add -f origin git://...echo path/to/subdir/*> .git/info/sparse-checkoutgit checkout branchname回答4:

和其他语言客户端一样处理!Window:github  clone有某个仓库下的指定目录Linux:github  clone有某个仓库下的指定目录Git:github  clone有某个仓库下的指定目录

相关文章: