我已将文件夹android添加到.gitingore
文件,执行以下命令:
git rm -rf --cached .
git add .
git commit -m "git"
git push origin master
无论如何,文件夹android都会尝试推送,它有大文件,并且git抛出错误,提示文件> 100 mb。
[当我处理本机项目时,我在MacBook上注意到此错误。
这是我的gitignore
.expo/*
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
android/
*.orig.*
web-build/
android/
web-report/
# macOS
.DS_Store
您的.gitignore
文件似乎正确,可以排除android文件夹。
也许您在编辑gitignore之前已经提交了一个大文件?如果是的话,你可以看看如何remove the large files from the Git History