I'm having trouble with a git repository (that is, a GitHub repo to which I push via git command-line tool).
It is a Rails app. One of the functionalities it implements is the download of .zip files... Which, by design, are created and temporarily stored on the server (localhost). Problem is the auto-delete hasn't been implemented yet. So, with .zip files around 120MB in size on the "server", I decided to git add -A
, git commit -m "blabla"
and git push
. Pushing took forever, ending up in an error message along the lines of "the file is too big, push aborted".
I gave up on pushing that day and deleted the problematic file instead. I kept on working the next days, opened a new branch, checked back out to branch master, tried to add -> commit -> push but... The error message about the size-exceeding .zip file was still there!
What's going on?!
Please help me out!