Github 下载指定文件夹(git sparse-checkout)

比如要下载这里的 data_utils

步骤

1、新建空文件夹,并进入新建的空文件夹。

2、git init 初始化

3、git remote add origin 添加远程仓库

4、git config core.sparsecheckout true 允许稀疏检出

5、git sparse-checkout set 设置需要拉取的文件夹(可以同时拉取多个,中间加空格即可)

6、git pull origin main 拉取

添加

在已经进行过稀疏检出的文件夹中,添加其它文件夹。

使用git sparse-checkout add

结果:

ps:git sparse-checkout 和 git lfs 不兼容

参考资料:

https://www.git-scm.com/docs/git-sparse-checkout(官方文档)

https://blog.csdn.net/shelutai/article/details/123116973

https://zhuanlan.zhihu.com/p/57390306

https://cloud.tencent.com/developer/article/2008489

https://github.com/git-lfs/git-lfs/issues/3803(git lfs issue)

相关推荐
aPurpleBerry几秒前
解决 fatal: detected dubious ownership in repository at ‘XXXX‘ 问题
github
sin22017 分钟前
git自己模拟多人协作
git
vvw&4 小时前
如何在 Ubuntu 22.04 上安装 Graylog 开源日志管理平台
linux·运维·服务器·ubuntu·开源·github·graylog
HelloGitHub5 小时前
跟着 8.6k Star 的开源数据库,搞 RAG!
开源·github
大猫和小黄5 小时前
Windows、CentOS环境下搭建自己的版本管理资料库:GitBlit
linux·服务器·windows·git
孤水寒月6 小时前
Git忽略文件.gitignore
git·elasticsearch
DN金猿14 小时前
git命令恢复/还原某个文件、删除远程仓库中的文件
git
DWei_GaGa17 小时前
Git:查看分支、创建分支、合并分支
git
sdaxue.com17 小时前
帝国CMS:如何去掉帝国CMS登录界面的认证码登录
数据库·github·网站·帝国cms·认证码
m0_7482475518 小时前
github webhooks 实现网站自动更新
github