为什么这些 gitignore 条目不起作用?
这是我的文件夹结构:
- 根
- 程序名称
- 垃圾箱
- 调试
- 备份
- 备份(此文件夹包含各种文本文件)
- 备份
- 调试
- 垃圾箱
- 程序名称
我想忽略 Backups 文件夹及其所有文件、子文件夹以及这些子文件夹中的文件。
我不想使用 Backups/
因为如果我理解正确的话,它将匹配名为 Backups 的根目录下任何位置的所有文件夹。
现在我的排除文件中有:Debug/Backup
,但这不起作用。
This is my folder struction:
- Root
- ProgramName
- bin
- Debug
- Backups
- Backup (This folder contains various text files)
- Backups
- Debug
- bin
- ProgramName
I want to ignore the Backups folder and all of it's files, subfolders, and files in those subfolders.
I don't want to use Backups/
because if I understand correctly that would match all folders anywhere under the Root directory named Backups.
Right now I have: Debug/Backup
in my exclude file, but that's not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 .gitignore 放在层次结构中的任何级别,具体目录的规则从它及其所有父级收集。因此,您可以将 .gitignore 与
Backups/
放在 Debug 文件夹中。您还可以在 root .gitignore 中指定以
/
开头的路径,从而仅匹配您的具体路径。所以在你的情况下它是/ProgramName/bin/Debug/Backups/
如果忽略模式以尾随
/
结尾 - 它将仅匹配目录。You could have .gitignore at any level in hierarchy, rules for concrete directory get gathered from it and all of its parents. So you could place .gitignore with
Backups/
in Debug folder.Also you could specify path in root .gitignore that starts with
/
, thus matching only your concrete path. So in your case it is/ProgramName/bin/Debug/Backups/
If ignore pattern finishes with trailing
/
- it will match directories only.