LFS
Large File System (LFS)
Git is designed to track text files. The binary files are tracked by making copies. If the binary file is large, this becomes storage inefficient and the LFS is designedfor that.
Git LFS is an extension for tracking large binary files.
A corresponding light-weight reference object is used in the commits.
The reference file is actually transferred for git clone or merge a branch.
The original large binary file is stored on a separate server.
The user will specify what type of files (e.g.
.wav
) to be tracked by LFS.
Last updated