Git is not efficient for storing large files. Git LFS (Large File Storage) helps manage them efficiently.
git lfs install
)git lfs track
)Task 21: Enable Git LFS and track a file type.
git lfs install
git lfs track "*.psd"
Task 22: Commit and push LFS files.
git add .gitattributes file.psd
git commit -m "Added large file"
git push origin main