gpt4 book ai didi

git - 从 GitHub 存储库下载单个文件夹或目录

转载 作者:太空宇宙 更新时间:2023-11-04 12:03:36 25 4
gpt4 key购买 nike

如何从托管在 GitHub 上的远程 Git 存储库中仅下载特定文件夹或目录?

假设 GitHub 存储库示例位于此处:

git@github.com:foobar/Test.git

其目录结构:

Test/
├── foo/
│ ├── a.py
│ └── b.py
└── bar/
├── c.py
└── d.py

我只想下载 foo 文件夹,而不是克隆整个测试项目。

最佳答案

2021 年 4 月更新:社区创建的一些工具可以为您执行此操作:

注意:如果您尝试下载大量文件,您可能需要为这些工具提供 token 以避免速率限制。


原始(手动)方法: git 本身不支持 checkout 单个目录,但 Github 可以通过 SVN 执行此操作。如果您使用 subversion checkout 代码,Github 会在后端将 repo 从 git 转换为 subversion,然后提供请求的目录。

此处介绍了如何使用此功能下载特定文件夹。我将使用流行的 javascript 库 lodash 作为示例。

  1. 导航到您要下载的文件夹。让我们从 master 分支下载 /testgithub repo URL example

  2. 修改 URL 以进行颠覆。将 tree/master 替换为 trunk

    https://github.com/lodash/lodash/tree/master/test

    https://github.com/lodash/lodash/trunk/test

  3. 下载文件夹。转到命令行并使用 SVN 抓取文件夹。

svn checkout https://github.com/lodash/lodash/trunk/test

您可能不会立即看到任何事件,因为 Github 最多需要 30 秒来转换更大的存储库,所以请耐心等待。

Full URL format explanation:

  • If you're interested in master branch, use trunk instead. So the full path is trunk/foldername
  • If you're interested in foo branch, use branches/foo instead. Thefull path looks like branches/foo/foldername
  • Protip: You can use svn ls to see available tags and branches before downloading if you wish

就是这样! Github supports more subversion features同样,包括对提交和推送更改的支持。

关于git - 从 GitHub 存储库下载单个文件夹或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51473093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com