Netbeans和Git,.obj文件被忽略了

时间:2015-03-20 07:29:20

标签: git github gitignore netbeans-8

我正在开发一个涉及.obj文件的小型git项目。

当我查看“项目标签”时,我发现它们被忽略了

enter image description here

但我不明白为什么,如果我看看我的.gitignore:

/DepthPeeling/nbproject/private/
/DepthPeeling/dist/
/DepthPeeling/build/

看起来不错

如果我打开Git Bash并输入

$ git add dragon.obj
The following paths are ignored by one of your .gitignore files:
DepthPelling/sry/depthPeeling/data/dragon.ogj
Use -f if you really want to add them.
fatal: no file added

WUT?

可能有多个.gitignore文件?如果我找到它们,我只找到项目本身的根目录中的一个(我之前显示的那个),仅此而已......

编辑:所以看起来我有一个全局忽略D:\ Documents \ gitignore_global.txt

#ignore thumbnails created by windows
Thumbs.db
#Ignore files build by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
*.dll
*.lib
*.sbr

1 个答案:

答案 0 :(得分:13)

您可以使用git check-ignore轻松找到哪个.gitignore(以及哪个规则)负责忽略您的.obj文件:

git check-ignore -v -- dragon.obj

OP报道:

"D:\\Documents\\gitignore_global.txt":5:*.obj –

类似to this comment

  

安装了SourceTree(一个工具可视化git repo),它在文档文件夹gitignore_global.txt下非逻辑地创建,其中包含大量排除项。

git config -l应该显示类似于:

的内容
[core] 
   excludesfile = C:\\Users\\username\\Documents\\gitignore_global.txt