576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
The implementation of the Fossil-specific glob pattern handling is here:
:File |:Description
--------------------------------------------------------------------------------
[`src/glob.c`][] | pattern list loading, parsing, and generic matching code
[`src/file.c`][] | application of glob patterns to file names
[`src/glob.c`]: https://www.fossil-scm.org/index.html/file/src/glob.c
[`src/file.c`]: https://www.fossil-scm.org/index.html/file/src/file.c
See the [Adding Features to Fossil][aff] document for broader details
about finding and working with such code.
The actual pattern matching leverages the `GLOB` operator in SQLite, so
you may find [its documentation][gdoc], [source code][gsrc] and [test
harness][gtst] helpful.
|
|
|
|
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
The implementation of the Fossil-specific glob pattern handling is here:
:File |:Description
--------------------------------------------------------------------------------
[`src/glob.c`][] | pattern list loading, parsing, and generic matching code
[`src/file.c`][] | application of glob patterns to file names
[`src/glob.c`]: https://fossil-scm.org/home/file/src/glob.c
[`src/file.c`]: https://fossil-scm.org/home/file/src/file.c
See the [Adding Features to Fossil][aff] document for broader details
about finding and working with such code.
The actual pattern matching leverages the `GLOB` operator in SQLite, so
you may find [its documentation][gdoc], [source code][gsrc] and [test
harness][gtst] helpful.
|