Pranav
Pranav

Reputation: 1646

How to deploy github project of size 876 MB?

I have successfully managed to upload project of size 876 MB on my Github repo by using code git config --global http.postBuffer 2097152000 but, I'am trying to deploy it on github pages from 5 days, and still no result. So many errors I'am encountering like 'pack out of memory', 'File too large'. I have even used above code, but, no effect. Is there any appropriate solution for this? Any suggestion or changes highly appreciated

Upvotes: 4

Views: 64

Answers (1)

VonC
VonC

Reputation: 1325137

Beside checking with GitHub support, you should try an incremental approach and:

  • publish only a small subset of files first, making sure they are rendered properly
  • publish the rest by small successive batches and see if there is a breaking point.

Upvotes: 1

Related Questions