使用 .tfignore 按名称递归忽略目录

Recursively ignore directory by name using .tfignore

我有以下文件夹结构:

foo1/
  node_modules/
foo2/
  node_modules/
  bar/
    node_modules/
.tfignore

根目录中有一个 .tfignore 文件。

我应该向 .tfignore 添加什么才能递归地忽略 node_modules 目录,无论它们在目录层次结构中的什么位置?


有很多问题与我相似。但都相当广泛。我想保持简单。请不要用 "Pending Changes" 提出任何建议。我只需要 .tfignore

中的一行

.tfignore 文件将忽略 all 子目录中的给定模式(除非另有说明)。它将忽略具有给定名称的文件 文件夹。对于文件夹,它将递归应用。

因此,.tfignore 具有:

node_modules

将忽略文件系统层次结构中名为 node_modules 的任何文件夹,并且会递归地忽略它们。