private bool IsIgnored(string path) { var isIgnored = Ignorance.IsIncluded(path) || Repository.IsPathIgnored(path); if (isIgnored) { Trace.TraceWarning("The file '{0}' is ignored due to `.gitignore` or ignore regex defined.", path); } return(isIgnored); }
private bool IsIgnored(string path) { return(Ignorance.IsIncluded(path)); }
private bool IsIgnored(string path) { return(Ignorance.IsIncluded(path) || Repository.IsPathIgnored(path)); }
public bool IsIgnored(string path) { return(Ignorance.IsIncluded(path) || IsPathIgnored(path)); }