I am trying to update a private repository on GitHub, however a large file is preventing me from doing so. GitHub warned me that the file was too large:
Delta compression using up to 2 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (22/22), 8.69 MiB | 3 KiB/s, done.
Total 22 (delta 11), reused 0 (delta 0)
remote: error: GH001: Large files detected.
remote: error: Trace: 0c940595507e24d7d2765083a99bdae8
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File logs/log.dat is 101.98 MB; this exceeds GitHub's file size limit of 100 MB
I then cleared the files contents and re-committed. However, I'm still getting the same error. I've also tried the following to no avail:
git reset HEAD~1
and
git rm --cached logs/log.dat
Can anyone help?
Note: I have tried the solutions listed before posting this question. When they didn't seem to work I asked for help.