intro
When starting 10.03 Project Betacraft Explorer I got to a problem, I wanted to backup my Minecraft world. But Minecraft worlds can become quite big, and if I remember correctly are binary files. So normal git wouldn’t be the best practice.
But then someone pointed me toward Git LFS
What
Git LFS
is a way to store large files in your git repo, kinda. It doesn’t really store your assets like the bee movie inside your git repo anymore. Instead it stores the pointers to the file, and the file itself is stored somewhere else.
How
I have found this video:
- go to https://git-lfs.com
- install it
- open your github repo
- add your massive file, for example:
the bee movie.mov
- then open the console in the root folder
- type
git lfs install
- type
git lfs track "*.mov"
if you want to track every .mov - type
git config lfs.threshold 5m
to set the global threshold to max 5mb - and just commit as usual
this repo
This repo has every .pdf tracked, + every file above 4mb