为什么这些 gitignore 条目不起作用?

发布于 2024-11-15 19:11:58 字数 354 浏览 0 评论 0原文

这是我的文件夹结构:

    • 程序名称
      • 垃圾箱
        • 调试
          • 备份
            • 备份(此文件夹包含各种文本文件)

我想忽略 Backups 文件夹及其所有文件、子文件夹以及这些子文件夹中的文件。

我不想使用 Backups/ 因为如果我理解正确的话,它将匹配名为 Backups 的根目录下任何位置的所有文件夹。

现在我的排除文件中有:Debug/Backup,但这不起作用。

This is my folder struction:

  • Root
    • ProgramName
      • bin
        • Debug
          • Backups
            • Backup (This folder contains various text files)

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海拔太高太耀眼 2024-11-22 19:11:58

您可以将 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文