我切到 .gitignore 文件 idea 就提示
some of the ignored directories are not excluded from indexing and search
现在是 只有 src 下某个目录下的文件 add 以后 git 无提交提示,其他目录都正常
但是我反复查看 gitignore 文件里面 我并没有配置这个目录的忽略啊
到底咋回事 头疼
idea 左边 这个文件夹也很特殊 显示是 灰黄色那种
其他都是正常的白色文件夹
1
punkdead OP 很奇怪 其他目录都正常的。
就这个目录下 不管你咋折腾 git 就是没有提交提示 |
2
tyrone2333 2022-09-13 21:34:07 +08:00
idea 点 文件 -> 清除缓存. 勾上重启就好了
|
3
punkdead OP @tyrone2333 是 invalidate caches 吗,试过好几次了没用
|
4
alvinbone88 2022-09-13 21:50:04 +08:00
不光要看 .gitignore 文件,还要看 .git/info/exclude 里面是否有配置
|
5
punkdead OP @alvinbone88
我看了下这个文件的内容是 # git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ 我目前每次只能 git add -f 才能提交这个目录下的文件了,不知道是哪里的配置导致的 头疼 |