Git 没有正确忽略我的一个子模块的 bin 文件夹。任何想法为什么?
这是子模块中的 git 状态:
MBPR:$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# bin/
# gen/
这是根目录中的 git 状态:
MBPR:$ git status
# On branch develop
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (commit or discard the untracked or modified content in submodules)
#
# modified: cwac-loaderex (untracked content)
#
这是我的 .gitignore:
MBPR:$ cat .gitignore
.metadata
bin
gen
local.properties
这适用于其他子模块,但特别是对于这个子模块,它拒绝忽略 bin 和 gen 文件夹。我反复删除并重新添加了这个子模块,但无济于事。
谢谢!