我正在使用带有 CDT 和 EGit 2.0.0 的 Eclipse 3.7 (Indigo)。我想提交构建目录(Debug
和Release
),因为它们包含makefile
,所以如果我想在没有 Eclipse 的主机中编译我的项目,我可以将存储库克隆cd
到Release
目录并调用make all
.
我.gitignore
的是这样的:
*.o
*.d
Debug/MyApplication
Release/MyApplication
如果我从控制台调用,git status
它会告诉目录未跟踪,所以我可以调用.Debug
Release
git add .
在 Eclipse 中,这是不可能的:它只是忽略 Debug 和 Release 目录。
那么...如何强制 Eclipse 暂存这些目录?我不想每次 makefile 更改时都从命令行调用 git。