3

We have a large project ~13gb. We can commit it just fine to the github software (had to commit in sections). But upon trying to sync the commits to the repo it fails. doing git status tells us that we are ahead of the master by 4 commits and to use git push. git push starts working but is extremely slow. (120kbps) Is this normal?

Kuliu
  • 171
  • 2
  • 12

1 Answers1

1

In addition of disk quota which might make the push fail anyway, git push can be slow for a number of reasons:

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Well its saying to try and keep it under 1gb? how would we accomplish this while still being able to work on github? – Kuliu Nov 08 '15 at 00:57
  • @Kuliu at least try and push only the first few commits (instead of the few history), to see if that actually completes. – VonC Nov 08 '15 at 00:58
  • @Kuliu But also consider that git is not well suited for such large repositories: splitting it in several repos (while keeping the original history) is the general best practice. – VonC Nov 08 '15 at 00:59