Git忽略了我不想要的文件

时间:2016-12-29 09:20:05

标签: git

我有一个名为" Build"的目录。 (来自迦太基)似乎被Git忽略了。我真的不想要它。我试图在目录中单独添加一个文件,它说:

The following paths are ignored by one of your .gitignore files:
platforms/ios/Carthage/Build/iOS/Zip.framework/Zip
Use -f if you really want to add them.

但我检查了我的.gitignore似乎没有这样的规则。

究竟发生了什么?

编辑:

这是我的gitignore:

*.swp
tags
.DS_Store
*.xcuserstate
project.xcworkspace/
xcuserdata/
*.espressostorage
Makefile

1 个答案:

答案 0 :(得分:2)

git上有3个忽略文件:

  • $ HOME / .config / git / ignore
  • $ GIT_DIR / info / exclude
  • 的.gitignore

您可以查看忽略文件的文件:

git check-ignore --verbose platforms/ios/Carthage/Build/iOS/Zip.framework/Zip

然后删除规则。