I forgot to .gitignore
my Pods/
directory, and I accidentally checked in and committed a file larger than 100MB so I can't push to github. Even after removing the pods all together with pod update
, manually deleting the directory causing the issue, and running git rm --cached -r Pods/
to remove all Pods from the commit, it still gives me the same error every time I try to push:
remote: error: File Pods/GoogleMobileVision/TextDetector/Frameworks/TextDetector.framework/TextDetector is 267.62 MB; this exceeds GitHub's file size limit of 100.00 MB
How do I fix this?