Git lfs - “this exceeds GitHub's file size limit of 100.00 MB”

倖福魔咒の 提交于 2019-11-27 14:36:06
Edward Thomson

Simply adding git-lfs configuration to an existing repository will not retroactively convert your large files to LFS support. Those large files will remain in your history and GitHub will refuse your pushes.

You need to rewrite your history to introduce git-lfs to your existing commits. I recommend the BFG repo cleaner tool, which added LFS support recently.

You should be able to convert historical usage of your CSV files by:

$ java -jar ~/bfg-1.12.5.jar --convert-to-git-lfs '*.csv' --no-blob-protection

I hit the same problem yesterday and cracked it. I was unable to push, and it appeared that none of my big files were in lfs.

There is probably a better way, but this worked for me. I have a large repo with 2.5 gigs of data.

I setup a new repo then setup lfs in it. git lfs init

I then configured my various file types git lfs track "*.pdb" git lfs track "*.dll" I then commmited my changes and pushed.

I then added my big files. I used sourcetree, and in the output notes it would state for the big files matching my wildcards that it was committing tiny txt file instead. (sorry, I didn't record these, but it should be obvious).

Then I pushed, and I saw 'skipping files', and the push succeeded quickly.

so the problem is probably trying to add files to lfs that are already in your history. You can only add new files. You can probably clean your repo of these files.

Note: I did find that quite a few files that matched my wildcards were not picked up by lfs. Similar files in different folders were picked up, but not all. I tried explicitly adding these files using the full path. git lfs track "Windows/bin/myBigFile.dll" but that didn't help either. In the end I gave up due to time constraints.

You should also check your storage limit with gitHub. I purchased the extra 50gig to cover my requirements.

Cloning the repo now downloads the files separately and everything is finally working well.

I had this error:

remote: error: File client/static/static-version/20171221_221446.psd is 223.61 MB; this exceeds GitHub's file size limit of 100.00 MB

And because I already removed this file from this folder, created .gitignore file and tried to commit couple times, I didn't know that it was cached, I could not push to github. In my case helped:

git filter-branch --index-filter 'git rm --cached --ignore-unmatch client/static/static-version/20171221_221446.psd'

Where I placed full file path(from error above) to remove it from cache. After that, push was made successfully

If you know which commit introduced the large commit, you could also try squashing that commit with the subsequent commits that introduced Git LFS.

For example, if the large commit was three commits ago (as revealed by git status), you could do the following:

git rebase -i HEAD~3

Then, replace all "pick" usages after the first one with "squash" in the interactive dialog.

Then,

git push origin --force

This may be help you

Click-OriginalWebPage

Only install lfs to a exist repo may be not enough. Your may also change the commit history. Hope this is work for you .

It looks like you haven't initialised git-lfs. Try to type

git lfs init

Source: Installing Git LFS

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!