Skip to content

Commit 5d5ab4b

Browse files
author
roeil
committed
docs
1 parent af5a857 commit 5d5ab4b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/input/docs/reference/mdsource/configuration.source.md

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

258+
:::
259+
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/`.
260+
:::
261+
258262
::: {.alert .alert-warning}
259263
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.
260264
:::

0 commit comments

Comments
 (0)