I have the file in my project, that more than 100 MB. I want to push it using git-lfs, but something went wrong and I receiving the same message from remote, that "this file exceeds GitHub's file size limit of 100.00 MB".
What I've done.
1. Downloaded git-lfs.
2. Installed it using brew.
3. Added files and patterns that should be tracked in the .gitattributes.
4. Tried to push.
Now, my .gitattributes file have the following.
*.framework filter=lfs diff=lfs merge=lfs -text
ios/libs/** filter=lfs diff=lfs merge=lfs -text
ios/libs/GoogleMobileAds.framework/GoogleMobileAds filter=lfs diff=lfs merge=lfs -text
GoogleMobileAds filter=lfs diff=lfs merge=lfs -text
ios/libs/ filter=lfs diff=lfs merge=lfs -text
I need to push ios/libs/GoogleMobileAds.framework/GoogleMobileAd <- this file. And I tried to add it in various ways, but nothing helped.
Any ideas what I'm missed?
Thanks.