C# Класс GitSharp.Core.RevWalk.Filter.MessageRevFilter

Matches only commits whose message matches the pattern.
Показать файл Открыть проект

Открытые методы

Метод Описание
create ( string pattern ) : RevFilter

Create a message filter. An optimized substring search may be automatically selected if the pattern does not contain any regular expression meta-characters. The search is performed using a case-insensitive comparison. The character encoding of the commit message itself is not respected. The filter matches on raw UTF-8 byte sequences.

Приватные методы

Метод Описание
TextFor ( RevCommit cmit ) : string

Описание методов

create() публичный статический Метод

Create a message filter. An optimized substring search may be automatically selected if the pattern does not contain any regular expression meta-characters. The search is performed using a case-insensitive comparison. The character encoding of the commit message itself is not respected. The filter matches on raw UTF-8 byte sequences.
public static create ( string pattern ) : RevFilter
pattern string Regular expression pattern to match.
Результат RevFilter