Gitignore不会忽略文件夹android,对本机做出反应

问题描述 投票:0回答:1

我已将文件夹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
android git react-native react-native-android gitignore
1个回答
1
投票

您的.gitignore文件似乎正确,可以排除android文件夹。

也许您在编辑gitignore之前已经提交了一个大文件?如果是的话,你可以看看如何remove the large files from the Git History

© www.soinside.com 2019 - 2024. All rights reserved.