From f7ba7b95be2864b27fee3ca9cb073dbb0c3da2f9 Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Fri, 2 May 2025 08:58:31 +0200 Subject: [PATCH] doc: Fix ignore files api in README.md --- README.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/README.md b/README.md index ed54ac6..677d864 100644 --- a/README.md +++ b/README.md @@ -296,23 +296,11 @@ The file format is similar to .gitignore: - To negate a pattern, use ! at the beginning of the line ``` # Ignore all files in the build directory -build/ - -# Ignore all temporary files +/build *.tmp -*.temp - -# Ignore all files with .log extension -*.log - # Ignore a specific file src/generated/autogen.cpp -# Ignore nested directories -**/node_modules/ - -# Negation - DO NOT ignore this file -!src/important.cpp ``` ## Troubleshooting