What is Git LFS?
Git LFS (Large File Storage) is an extension for versioning large files.
Setup
bash
# Install Git LFS
git lfs install
# Track large files
git lfs track "*.psd"
git lfs track "*.zip"
# Commit .gitattributes
git add .gitattributes
git commit -m "Configure Git LFS"Conclusion
Git LFS solves the problem of large files in Git repositories.