Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: blob is too big - downloading a single zip file from github repo

Tags:

github

When downloading a 10 MB zip file from my github (free) repo, I received this error:

Error: blob is too big

... 10 MB doesn't seem that big for a binary download... but in either case, how do you download individual larger binary files from github or how do you set up github so that certain binary files in a project can be downloaded?

like image 512
ina Avatar asked Feb 16 '13 10:02

ina


1 Answers

Github is doing this intentionally, to prevent project owners from distributing compiled binaries via Github.

They want Github to be a platform for sharing source code, not a platform for sharing files.
It is also a way to prevent misuse (distributing non-open movies/etc).

Google Code is unfortunately following their example, and will prevent project owners from uploading new files in a few months.

A solution is to host files on SourceForge or similar services.

like image 95
Nicolas Raoul Avatar answered Sep 24 '22 03:09

Nicolas Raoul