# 10MB 이상의 모든 파일 찾기
find . -size +10M -type f | while read -r file; do
    # Git LFS로 각 파일 추적
    git lfs track "$file"
done

# .gitattributes 파일에 변경사항이 있으면 커밋
git add .gitattributes
git commit -m "Track large files using Git LFS"

git push

+ Recent posts