C# 클래스 GitSharp.Core.RevWalk.Filter.CommitterRevFilter

Matches only commits whose committer name matches the pattern.
파일 보기 프로젝트 열기: jagregory/GitSharp

공개 메소드들

메소드 설명
create ( string pattern ) : RevFilter

Create a new committer 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 new committer 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