I've tried to push a commit containing a file exceeding the 100 MB limit and see the message
remote: error: File data/clean/new/all_listings_clean.csv is 327.92 MB; this exceeds GitHub's file size limit of 100.00 MB
So I deleted the file locally (I didn't need it) and tried git reset
and then git add -A
+ git commit -m "..."
and git push origin master
but I see the same error message.
I've also tried git reset HEAD^
, git reset HEAD -- .
, git reset HEAD~
, git rm --cached
.
I keep getting this error! It can't figure out how to tell it to refresh my staging area, recognize that the large file is not there anymore, and go ahead and push the commit without it.