johnrkendall
johnrkendall

Reputation: 31

How to use Git with file too big (>100mb) for Git LFS?

How does one manage a file (.obj) that's too big for Git LFS?

It has a 100mb limit (https://help.github.com/articles/working-with-large-files/)

For a project in Unity, I'm unable to push this file 113mb.

Upvotes: 3

Views: 7386

Answers (2)

Edward Thomson
Edward Thomson

Reputation: 78833

GitHub has a 100 MB size limitation on files that are not in Git LFS.

If you're unable to push, then your file is not actually in Git LFS. Make sure that you've removed every version of the file from your history. It is not merely enough to take a large file that has been committed and turn on Git LFS. The old versions remain - as large files - in history.

Upvotes: 6

DangerMouse
DangerMouse

Reputation: 128

Use a host with larger size limits (like bitbucket). The problem is with github limits, not with git lfs.

Upvotes: 0

Related Questions