Namespaces

Types in GitSharp

Type Leaf

Namespace GitSharp

Parent Blob

Interfaces ITreeNode

Leaf represents a file entry in a Tree.

Properties

Public properties

string Data get;

string Hash get;

bool IsBlob get;

bool IsCommit get;

bool IsExecutable get;

True if the file is executable (unix).

bool IsTag get;

bool IsTree get;

string Name get;

The file name

Tree Parent get;

The parent Tree.

string Path get;

The full path relative to repostiory root

int Permissions get;

The unix file permissions. Todo: model this with a permission object

Byte[] RawData get;

Repository Repository get;

string ShortHash get;