Use Glob Patterns for Include/Exclude
masterWhen using --include or --exclude, follow these rules:
- Recursive patterns: Use
**(e.g.,res://**/*.gdcmatches all.gdcfiles in all subdirectories). - Rooting: Globs should be rooted to
res://oruser://. If not rooted, they default tores://. - Wildcard shorthand: If a glob has a wildcard but no directory, it is treated as recursive (e.g.,
*.gdcis equivalent tores://**/*.gdc). - Matching: Globs only match files actually present in the project PCK/directory. For example, if
res://main.gdcexists in the PCK, using the globres://main.gdwill not match anything, butres://main.gdcwill match and allow recovery of the sourceres://main.gd.