| Age | Commit message (Collapse) | Author |
|
The "**/foo/**" means accept any files as long as there is foo directory
in the middle.
|
|
The IgnorePattern is not exclusive to git only. Some program, like
REUSE, use the same pattern in the REUSE.toml path configuration.
|
|
Single wildcard should ignore everything inside it.
|
|
Gitignore is a type that represent ".gitignore" file.
There are two ways to populate Gitignore, by using [LoadGitignore]
function, or by using [Gitignore.Parse] method.
After the Gitignore created, one can check if a path is ignored by
using [Gitignore.IsIgnored] method, relative to the Gitignore directory.
|