# Run the following commands in the terminal to enable large file storage | |
git lfs install | |
# or | |
brew install git-lfs | |
# then in the git folder you want to use git-lfs | |
git lfs track "*.pkl" | |
git lfs track "*.jpg" | |
git lfs track "*.jpeg" | |
git add .gitattributes | |
git add -A | |
git commit -m "update .gitattributes so git lfs will track .pkl files" | |
git push |