Github file size limit changed 6/18/13. Can't push now
Posted
by
slindsey3000
on Stack Overflow
See other posts from Stack Overflow
or by slindsey3000
Published on 2013-06-29T16:35:16Z
Indexed on
2013/06/29
22:22 UTC
Read the original article
Hit count: 578
How does this change as of June 18, 2013 affect my existing repository with a file that exceeds that limit? I last pushed 2 months ago with a large file.
I have a large file that I have removed locally but I can not push anything now. I get a "remote error" ... remote: error: File cron_log.log is 126.91 MB; this exceeds GitHub's file size limit of 100 MB
I added the file to .gitignore after original push... But it still exists on remote (origin)
Removing it locally should get rid of it at origin(Github) right? ... but ... it is not letting me push because there is a file on Github that exceeds the limit...
https://github.com/blog/1533-new-file-size-limits
These are the commands I issued plus error messages..
git add . git commit -m "delete cron_log.log" git push origin master remote: Error code: 40bef1f6653fd2410fb2ab40242bc879 remote: warning: Error GH413: Large files detected. remote: warning: See http://git.io/iEPt8g for more information. remote: error: File cron_log.log is 141.41 MB; this exceeds GitHub's file size limit of 100 MB remote: error: File cron_log.log is 126.91 MB; this exceeds GitHub's file size limit of 100 MB To https://github.com/slinds(omited_here)/linexxxx(omited_here).git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://github.com/slinds(omited_here)
I then tried things like
git rm cron_log.log
git rm --cached cron_log.log
Same error.
© Stack Overflow or respective owner