Git 使用.gitignore文件设置为只包含某文件夹下的某文件

一、直接上代码

该方法用于忽略Release文件,除了Release文件夹下生成的dll文件

Release/*
!Release/*.dll

而不是

Release/
!Release/*.dll

二、解析

参考自官方的文件,使用git help gitignore 即可打开一个网页版的本地帮助文档。
文档中清楚记录着:

It is not possible to re-include a file if a parent directory of that file is excluded.

大致意思就是如果父目录被忽略了,那么! 也无法拯救该文件。

所以应使用Release/* 仅忽略其下的全部文件/文件夹,然后再重新包含 某文件。
注: Release/ 是忽略该文件夹, 及其下的全部文件/文件夹

你可能感兴趣的:(经验详谈,Git,git,.gitignore)