GitScc.DataServices.RepositoryGraph.GetChanges C# (CSharp) Method

GetChanges() public method

public GetChanges ( string commitId ) : IEnumerable
commitId string
return IEnumerable
        public IEnumerable<Change> GetChanges(string commitId)
        {
            return GetChanges(commitId + "~1", commitId);
        }

Same methods

RepositoryGraph::GetChanges ( string fromCommitId, string toCommitId ) : IEnumerable

Usage Example

 public void TreeDiffTest1()
 {
     RepositoryGraph repo = new RepositoryGraph(repodir);
     var changes = repo.GetChanges("master");
     foreach (var change in changes)
     {
         Console.WriteLine("{0}:{1}", change.ChangeType, change.Name);
     }
 }
All Usage Examples Of GitScc.DataServices.RepositoryGraph::GetChanges