2

I know there is many many threads about this but being a noob to coding I do not understand what the codes people reply with... My issue is the file is too big. Now during hours of searching, I found a solution, Github's LFS. The issue is that I can't manage to activate it. As well as I tried making a new repository to upload my project (hoping it will take the entire project).

Any sugestions?

Thanks in advance!

Hidrem
  • 39
  • 1
  • 2

1 Answers1

0

Github have documented this and set up restrictions against pushing files over 100mb.

And more info about it here

It seems like there is no way around this. You'll need to either break up the file into smaller pieces or look for other alternatives.

Other users have mention this: https://stackoverflow.com/a/34780618/3010171

I'm not sure if that fits your project.

Community
  • 1
  • 1
Christian Moen
  • 1,253
  • 2
  • 17
  • 31
  • How can I break the file into smaller pieces? – Hidrem Apr 16 '17 at 21:10
  • If it's models, you might add those into smaller projects and piece and 'include' them up in another file.. So the file just refers to other files.. Not sure if that works in what file type your file is. – Christian Moen Apr 16 '17 at 21:14