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

posted on   愤怒的苹果ext  阅读(81)  评论(0编辑  收藏  举报

编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示