예제 #1
0
        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);
        }
예제 #2
0
 private bool IsIgnored(string path)
 {
     return(Ignorance.IsIncluded(path));
 }
예제 #3
0
 private bool IsIgnored(string path)
 {
     return(Ignorance.IsIncluded(path) || Repository.IsPathIgnored(path));
 }
예제 #4
0
 public bool IsIgnored(string path)
 {
     return(Ignorance.IsIncluded(path) || IsPathIgnored(path));
 }