当前位置:   article > 正文

github上传超过100M的大文件_github上传大于100m

github上传大于100m

当上传的工程中有超过100M的文件时,直接上传github会产生如下报错:

remote: error: File retinaface-R50/R50-0000.params is 112.54 MB; 
this exceeds GitHub's file size limit of 100.00 MB
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://github.com/XYZ/xxx.git'
  • 1
  • 2
  • 3
  • 4

解决方法:
安装一个Git LFS(Git Large File Storge,Git 大文件储存)

git lfs install
  • 1

先把其余文件正常上传,然后跟踪超过100M的文件,

git lfs track retinaface-R50/R50-0000.params # track large file path
git add .gitattributes
git add retinaface-R50/R50-0000.params
git commit -m "submit file"
git push -u origin master
  • 1
  • 2
  • 3
  • 4
  • 5

有大文件一起上传push时要先清掉大文件的push缓存:

git filter-branch --force --index-filter "git rm --cached --ignore-unmatch retinaface-R50/R50-0000.params" --prune-empty  --tag-name-filter cat -- --all
  • 1

出现下面的进度条,就说明文件正在上传中啦~
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/953640
推荐阅读
相关标签
  

闽ICP备14008679号