C# Class GitSharp.Core.IndexDiff

Datei anzeigen Open project: jagregory/GitSharp Class Usage Examples

Public Methods

Method Description
Diff ( ) : bool

Run the diff operation. Until this is called, all lists will be empty

IndexDiff ( Repository repository ) : System.Collections.Generic

Construct an indexdiff for diffing the workdir against the index.

IndexDiff ( Tree tree, GitIndex index ) : System.Collections.Generic

Construct an indexdiff for diffing the workdir against both the index and a tree.

Private Methods

Method Description
CheckUntrackedDirectory ( string path, string relative_path ) : void
CheckUntrackedFile ( FileInfo f, string relative_path ) : void

Method Details

Diff() public method

Run the diff operation. Until this is called, all lists will be empty
public Diff ( ) : bool
return bool

IndexDiff() public method

Construct an indexdiff for diffing the workdir against the index.
public IndexDiff ( Repository repository ) : System.Collections.Generic
repository Repository
return System.Collections.Generic

IndexDiff() public method

Construct an indexdiff for diffing the workdir against both the index and a tree.
public IndexDiff ( Tree tree, GitIndex index ) : System.Collections.Generic
tree Tree
index GitIndex
return System.Collections.Generic