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

后端 未结 2 717
野的像风
野的像风 2021-01-07 04:37

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 projec

相关标签:
2条回答
  • 2021-01-07 04:59

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

    0 讨论(0)
  • 2021-01-07 05:12

    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.

    0 讨论(0)
提交回复
热议问题