Skip to content

Commit 81a843f

Browse files
committed
Docs changes
1 parent 5d5ab4b commit 81a843f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/input/docs/reference/configuration.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,10 @@ A commit having changes only in `/ProjectB/*` path would be ignored. A commit ha
654654
* `/LibraryC/*` and `/ProductB/*`
655655
* `/ProductA/*` and `/ProductB/*` and `/LibraryC/*`
656656

657+
:::
658+
Note: The `ignore.paths` configuration is case-sensitive. This can lead to unexpected behavior on case-insensitive file systems, such as Windows. To ensure consistent matching regardless of case, you can prefix your regular expressions with the case-insensitive flag `(?i)`. For example, `(?i)^docs\/` will match both `docs/` and `Docs/`.
659+
:::
660+
657661
::: {.alert .alert-warning}
658662
A commit is ignored by the `ignore.paths` configuration only if **all paths** changed in that commit match one or more of the specified regular expressions. If a path in a commit does not match any one of the ignore patterns, that commit will be included in version calculations.
659663
:::

0 commit comments

Comments
 (0)