Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

The patterns are regular expressions, so if you wish to match characters such as '.' and '\' literally they need to be escaped. e.g. '\.' and '\\'.

The patterns are matched against the relative path from the branch head or, for non-branch repositories, the repository root. This does not include a leading slash.

e.g. to To exactly match 'http://domain/repo/branch/subfolder/sourcefile.pas' use the pattern 'subfolder\/sourcefile\.pas'; to match all '*.pas' files under 'subfolder' use the pattern 'subfolder\/[^\.]*\.pas'

...