2

I try to upload some file to github with git in linux.
I have a big file and a unstable connection. upload was interrupted many times.
Is there any way to upload these files resumable?

mlibre
  • 2,460
  • 3
  • 23
  • 32

2 Answers2

2

Git isn't made for big files. Git is version control system for small files of text or code. For big files use GitLFS. When you have connections problems you can't solve that in my mind.

Another solution for large files is rsync with append.

René Höhle
  • 26,716
  • 22
  • 73
  • 82
1

As mentioned in "Resuming git push", there is no "resume push" in Git, only pushing less and smaller commits.

rsync the .git/objects folder is often advised, but is not possible in your case (GitHub).

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250