I'm having issues getting Git LFS to track my large files properly (similar issue reported here: Git LFS refused to track my large files properly, until I did the following).
In my specific case, I am trying to push a directory composed of multiple subdirectories, each of which has files of a specific type that I would like to track. The extensions for these file types are .bed
, .Bed
, and .sorted
. Here was the recipe that I followed:
I did git add .
, then git commit -m "initial commit"
, then issued the respective tracking commands (e.g., git lfs track ".bed"
), and then did git push origin master
.
However, I still received multiple error commands ending in "this exceeds GitHub's file size limit of 100.00 MB
". I've already gone through practically every available Stack Overflow post on this topic (e.g.., git lfs not working properly for files larger than 100MB), so any advice would be greatly appreciated.