Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Netbeans 中,当我从现有源创建一个新的 C++ 项目时,只有 Makefile 似乎受 Git 版本控制。从 Netbeans 中的“项目”或“文件”窗口查看时,其他文件(.h、.cpp)似乎都被忽略(灰显)。
如何跟踪这些文件?
我已经尝试过右键单击 unignore 选项。我此时没有 .gitignore 文件。
您可以通过其他方式忽略 git 中的文件,而不是使用.gitignore.
.gitignore
在项目文件夹中检查文件.git/info/exclude- 您可以排除您不想保留在 .gitignore 中的文件(通常与其他编码人员共享)
.git/info/exclude
您还可以忽略全局级别的文件。检查 Netbeans 的设置 - 它可能有一个 git 使用的全局忽略列表。