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.
我有这个目录结构
./bin/<java class files> ./sometool/bin/<files for the tool>
...以及其他一些文件和目录。
它看到,如果我想避免跟踪 java 类文件,我应该将其添加到 .gitignore 文件中:
bin/
但是,这似乎也忽略了路径 ./sometool/bin
这是正确的,如果是这样,我如何获得我想要的行为。
我认为路径.gitignore的根是项目的根,所以你可以试试/bin
.gitignore
/bin
编辑
顺便说一句,这是 git 的正常行为。