当前位置: 首页 > article >正文

【test】git clone lfs问题记录

Git Large File Storage (LFS) 是 Git 的一个扩展,它替代 Git 来管理大型文件,比如音频、视频、图形文件和其他二进制大对象(blobs)。Git LFS 通过将这些大文件的指针存储在本地仓库中,并把实际文件存储在一个单独的服务器上来工作,这个服务器通常是托管代码库的地方,如 GitHub、GitLab 或 Bitbucket。
在用Git去clone的时候遇到以下问题:

Use git lfs logs last to view the log.
error: external filter 'git-lfs filter-process' failed
fatal: data/processed/career_builder/embedding.npy: smudge filter lfs failed
warning: Clone succeeded, but checkout failed.

解决方案:

#1.
git lfs install --skip-smudge
git config --global core.longpaths true


#2.
#Skip smudge - We'll download binary files later in a faster batch
git lfs install --skip-smudge
#Do git clone here
git clone ...
#Fetch all the binary files in the new clone
git lfs pull
# Reinstate smudge
git lfs install --force

参考:
https://github.com/git-lfs/git-lfs/issues/911
https://kerwenzhang.github.io/git/2020/04/14/Git-LFS-issue/


http://www.kler.cn/a/455335.html

相关文章:

  • Java与SQL Server数据库连接的实践与要点
  • 跨语言数据格式标准化在 HarmonyOS 开发中的实践
  • Llama 3 预训练(二)
  • Android `android.graphics` 包深度解析:架构与设计模式
  • 使用 Three.js 创建一个 3D 人形机器人仿真系统
  • 使用 Spring Boot 实现文件上传:从配置文件中动态读取上传路径
  • 从VLM到VLA概论
  • SAQ可持续发展评级最新消息
  • Milvus 中,FieldSchema 的 dim 参数和索引参数中的 “nlist“ 的区别
  • page_ref_freeze浅析
  • 34 - Java 8 Stream
  • 微服务——部署与运维
  • elasticsearch中使用fuzzy查询
  • docker卸载
  • 算法练习——位运算
  • windows下vscode使用msvc编译器出现中文乱码
  • 使用ffmpeg时,出现缺少libmvec.so.1共享库的问题
  • vscode-QT环境配置
  • uniapp中Nvue白屏问题 ReferenceError: require is not defined
  • TOTP双因素认证(2FA)php简单实现
  • 利用 Python 编写一个 VIP 音乐下载脚本
  • 软体机器人研究报告:设计方法、材料与驱动、感知与控制
  • 【MuJoCo和PhysX】
  • GFPS扩展技术原理(十)-FMDN Notification
  • MFC案例:图片文件转图标(ico)格式
  • pathlib:面向对象的文件系统路径