Returns a regexp which is the equivalent of the gitignore pattern.
Format specification: https://git-scm.com/docs/gitignore#_pattern_format
public static function toRegex(string $gitignoreFileContent) : string { return self::buildRegex($gitignoreFileContent, false); }