github上传大文件
- github上传大文件怎么都上传不上去,查了下原来是要用
git lfs
,这里做个简单的记录 - 1、在当前仓库目录下命令执行:
git lfs install
- 2、选择您希望Git LFS管理的文件类型(或直接编辑.gitattributes)。您可以随时配置其他文件扩展名。这一步成功后会生成一个gitattributes文件:
git lfs track “zookeeper.pdf”
这里的zookeeper.pdf就是要上传的文件。 - 3、添加并提交 gitattributes文件:
git add .gitattributes
- 4、然后再添加大文件到本地缓存区
git add zookeeper.pdf
git commit -m "first version"
git push
-
大文件上传较慢需要耐心等待下。
-
最后总结下提交过程中可能遇到的错误:
-
1、
$ git push
Username for 'https://github.com': 1030907690@qq.com
Remote "origin" does not support the LFS locking API. Consider disabling it with:
$ git config lfs.https://github.com/1030907690/big-file.git/info/lfs.locksverify false
Git credentials for https://github.com/1030907690/big-file.git not found.
error: failed to push some refs to 'https://github.com/1030907690/big-file.git'
解决方案:git config lfs.https://github.com/1030907690/big-file.git/info/lfs.locksverify false
,注意这个仓库地址要根据它报错来,要改成自己的仓库地址
。
- 2、
$ git push
Username for 'https://github.com': 1030907690@qq.com
Git LFS: (0 of 1 files) 0 B / 119.97 MB
batch response: Git credentials for https://github.com/1030907690/big-file.git not found.
error: failed to push some refs to 'https://github.com/1030907690/big-file.git'
解决方案:保存密码 git config --global credential.helper store
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现