public Commits GetCommits() { var commits = new Commits(); commits._commitLog = repository.Commits; return(commits); }
public Commits GetCommitsByPath(string path) { var commits = new Commits(); commits._commitLog = (IQueryableCommitLog)repository.Commits.QueryBy(path); return(commits); }
public Commits GetCommits(object IncludeReachableFrom, object ExcludeReachableFrom) { var commits = new Commits(); var filter = new CommitFilter(); filter.IncludeReachableFrom = IncludeReachableFrom; filter.ExcludeReachableFrom = ExcludeReachableFrom; commits._commitLog = (IQueryableCommitLog)repository.Commits.QueryBy(filter); return(commits); }